Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp931 assert(!E->isFileScope() && in tryEmitGlobalCompoundLiteral()
2239 assert(E->isFileScope() && "not a file-scope compound literal expr"); in GetAddrOfConstantCompoundLiteral()
H A DCGExpr.cpp4941 if (E->isFileScope()) { in EmitCompoundLiteralLValue()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h915 bool isBoundable() const override { return !CL->isFileScope(); } in isBoundable()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp1139 if (CL->isFileScope()) in getCompoundLiteralRegion()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp1464 ID.AddBoolean(S->isFileScope()); in VisitCompoundLiteralExpr()
H A DExprConstant.cpp2073 return CLE->isFileScope() && CLE->isLValue(); in IsGlobalLValue()
8703 assert((!Info.getLangOpts().CPlusPlus || E->isFileScope()) && in VisitCompoundLiteralExpr()
H A DASTImporter.cpp7506 ToInitializer, E->isFileScope()); in VisitCompoundLiteralExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeExprGen.cpp1543 if (E->isFileScope()) { in VisitCompoundLiteralExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp7824 bool isFileScope = !CurContext->isFunctionOrMethod(); in BuildCompoundLiteralExpr() local
7845 (getLangOpts().CPlusPlus && !(isFileScope && literalType->isArrayType())) in BuildCompoundLiteralExpr()
7849 if (isFileScope) in BuildCompoundLiteralExpr()
7857 VK, LiteralExpr, isFileScope); in BuildCompoundLiteralExpr()
7858 if (isFileScope) { in BuildCompoundLiteralExpr()
7874 if (!isFileScope && !getLangOpts().CPlusPlus) { in BuildCompoundLiteralExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp1141 Record.push_back(E->isFileScope()); in VisitCompoundLiteralExpr()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h3423 bool isFileScope() const { return TInfoAndScope.getInt(); } in isFileScope() function