Home
last modified time | relevance | path

Searched refs:isFileScope (Results 1 – 10 of 10) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGExprConstant.cpp910 assert(!E->isFileScope() && in tryEmitGlobalCompoundLiteral()
2179 assert(E->isFileScope() && "not a file-scope compound literal expr"); in GetAddrOfConstantCompoundLiteral()
DCGExpr.cpp4470 if (E->isFileScope()) { in EmitCompoundLiteralLValue()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DMemRegion.h878 bool isBoundable() const override { return !CL->isFileScope(); } in isBoundable()
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
DMemRegion.cpp1084 if (CL->isFileScope()) in getCompoundLiteralRegion()
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DStmtProfile.cpp1335 ID.AddBoolean(S->isFileScope()); in VisitCompoundLiteralExpr()
DExprConstant.cpp1994 return CLE->isFileScope() && CLE->isLValue(); in IsGlobalLValue()
8304 assert((!Info.getLangOpts().CPlusPlus || E->isFileScope()) && in VisitCompoundLiteralExpr()
DASTImporter.cpp6955 ToInitializer, E->isFileScope()); in VisitCompoundLiteralExpr()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaExpr.cpp6960 bool isFileScope = !CurContext->isFunctionOrMethod(); in BuildCompoundLiteralExpr() local
6981 (getLangOpts().CPlusPlus && !(isFileScope && literalType->isArrayType())) in BuildCompoundLiteralExpr()
6985 if (isFileScope) in BuildCompoundLiteralExpr()
6993 VK, LiteralExpr, isFileScope); in BuildCompoundLiteralExpr()
6994 if (isFileScope) { in BuildCompoundLiteralExpr()
7010 if (!isFileScope && !getLangOpts().CPlusPlus) { in BuildCompoundLiteralExpr()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTWriterStmt.cpp1045 Record.push_back(E->isFileScope()); in VisitCompoundLiteralExpr()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DExpr.h3423 bool isFileScope() const { return TInfoAndScope.getInt(); } in isFileScope() function