Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h878 bool isBoundable() const override { return !CL->isFileScope(); } in isBoundable()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp1084 if (CL->isFileScope()) in getCompoundLiteralRegion()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp1335 ID.AddBoolean(S->isFileScope()); in VisitCompoundLiteralExpr()
H A DExprConstant.cpp1994 return CLE->isFileScope() && CLE->isLValue(); in IsGlobalLValue()
8298 assert((!Info.getLangOpts().CPlusPlus || E->isFileScope()) && in VisitCompoundLiteralExpr()
H A DASTImporter.cpp6955 ToInitializer, E->isFileScope()); in VisitCompoundLiteralExpr()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A 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-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp1045 Record.push_back(E->isFileScope()); in VisitCompoundLiteralExpr()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h3423 bool isFileScope() const { return TInfoAndScope.getInt(); } in isFileScope() function