Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGExprConstant.cpp930 assert(!E->isFileScope() && in tryEmitGlobalCompoundLiteral()
2215 assert(E->isFileScope() && "not a file-scope compound literal expr"); in GetAddrOfConstantCompoundLiteral()
H A DCGExpr.cpp4536 if (E->isFileScope()) { in EmitCompoundLiteralLValue()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h910 bool isBoundable() const override { return !CL->isFileScope(); } in isBoundable()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp1123 if (CL->isFileScope()) in getCompoundLiteralRegion()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DStmtProfile.cpp1428 ID.AddBoolean(S->isFileScope()); in VisitCompoundLiteralExpr()
H A DExprConstant.cpp1997 return CLE->isFileScope() && CLE->isLValue(); in IsGlobalLValue()
8421 assert((!Info.getLangOpts().CPlusPlus || E->isFileScope()) && in VisitCompoundLiteralExpr()
H A DASTImporter.cpp7221 ToInitializer, E->isFileScope()); in VisitCompoundLiteralExpr()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaExpr.cpp7496 bool isFileScope = !CurContext->isFunctionOrMethod(); in BuildCompoundLiteralExpr() local
7517 (getLangOpts().CPlusPlus && !(isFileScope && literalType->isArrayType())) in BuildCompoundLiteralExpr()
7521 if (isFileScope) in BuildCompoundLiteralExpr()
7529 VK, LiteralExpr, isFileScope); in BuildCompoundLiteralExpr()
7530 if (isFileScope) { in BuildCompoundLiteralExpr()
7546 if (!isFileScope && !getLangOpts().CPlusPlus) { in BuildCompoundLiteralExpr()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriterStmt.cpp1041 Record.push_back(E->isFileScope()); in VisitCompoundLiteralExpr()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DExpr.h3439 bool isFileScope() const { return TInfoAndScope.getInt(); } in isFileScope() function