Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprConstant.cpp910 assert(!E->isFileScope() && in tryEmitGlobalCompoundLiteral()
2179 assert(E->isFileScope() && "not a file-scope compound literal expr"); in GetAddrOfConstantCompoundLiteral()
H A DCGExpr.cpp4470 if (E->isFileScope()) { in EmitCompoundLiteralLValue()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h878 bool isBoundable() const override { return !CL->isFileScope(); } in isBoundable()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp1084 if (CL->isFileScope()) in getCompoundLiteralRegion()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtProfile.cpp1318 ID.AddBoolean(S->isFileScope()); in VisitCompoundLiteralExpr()
H A DExprConstant.cpp1994 return CLE->isFileScope() && CLE->isLValue(); in IsGlobalLValue()
8295 assert((!Info.getLangOpts().CPlusPlus || E->isFileScope()) && in VisitCompoundLiteralExpr()
H A DASTImporter.cpp6826 ToInitializer, E->isFileScope()); in VisitCompoundLiteralExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp6896 bool isFileScope = !CurContext->isFunctionOrMethod(); in BuildCompoundLiteralExpr() local
6917 (getLangOpts().CPlusPlus && !(isFileScope && literalType->isArrayType())) in BuildCompoundLiteralExpr()
6921 if (isFileScope) in BuildCompoundLiteralExpr()
6929 VK, LiteralExpr, isFileScope); in BuildCompoundLiteralExpr()
6930 if (isFileScope) { in BuildCompoundLiteralExpr()
6946 if (!isFileScope && !getLangOpts().CPlusPlus) { in BuildCompoundLiteralExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterStmt.cpp1034 Record.push_back(E->isFileScope()); in VisitCompoundLiteralExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExpr.h3356 bool isFileScope() const { return TInfoAndScope.getInt(); } in isFileScope() function