Home
last modified time | relevance | path

Searched refs:hasGlobalStorage (Results 1 – 20 of 20) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DDeadStoresChecker.cpp367 if (VD->hasGlobalStorage() && in observeStmt()
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp214 REGISTER_MATCHER(hasGlobalStorage); in RegistryMaps()
/external/clang/lib/Analysis/
DLiveVariables.cpp174 return D->hasGlobalStorage(); in isAlwaysAlive()
DUninitializedValues.cpp37 if (vd->isLocalVarDecl() && !vd->hasGlobalStorage() && in isTrackedVar()
/external/clang/lib/CodeGen/
DCGDeclCXX.cpp28 assert(D.hasGlobalStorage() && "VarDecl must have global storage!"); in EmitDeclInit()
DCodeGenModule.cpp1601 SafeToInline = !V->hasGlobalStorage() || V->hasAttr<DLLImportAttr>(); in VisitDeclRefExpr()
2117 assert(D->hasGlobalStorage() && "Not a global variable"); in GetAddrOfGlobalVar()
DCGExpr.cpp1848 if (VD->hasGlobalStorage()) { in setObjCGCLValueClass()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h2543 AST_MATCHER(VarDecl, hasGlobalStorage) { in AST_MATCHER() argument
2544 return Node.hasGlobalStorage(); in AST_MATCHER()
/external/clang/lib/StaticAnalyzer/Core/
DMemRegion.cpp769 if (D->hasGlobalStorage() && !D->isStaticLocal()) { in getVarRegion()
/external/clang/include/clang/Basic/
DAttr.td104 [{S->hasGlobalStorage() && !S->getTLSKind()}]>;
107 [{S->hasGlobalStorage()}]>;
/external/clang/lib/Sema/
DSemaStmt.cpp709 if (VD->hasGlobalStorage() && VarType.isConstQualified() && in ShouldDiagnoseSwitchCaseNotInEnum()
1449 (*I)->hasGlobalStorage()) return; in CheckForLoopConditionalStatement()
DSemaOpenMP.cpp383 if (D->hasGlobalStorage()) in getDSA()
977 return VD->hasGlobalStorage() && in ValidateCandidate()
1023 if (!VD->hasGlobalStorage()) { in ActOnOpenMPIdExpression()
DSemaDecl.cpp6307 if (D->hasGlobalStorage()) in CheckShadow()
6617 (T->isVariableArrayType() && NewVD->hasGlobalStorage())) { in CheckVariableDeclarationType()
10006 bool GlobalStorage = var->hasGlobalStorage(); in CheckCompleteVariableDeclaration()
DSemaDeclAttr.cpp3481 if (!VD->hasGlobalStorage()) in handleNoDebugAttr()
DSemaDeclCXX.cpp11420 if (!VD->hasGlobalStorage()) return; in FinalizeVarWithDestructor()
/external/clang/include/clang/AST/
DDecl.h925 bool hasGlobalStorage() const { return !hasLocalStorage(); } in hasGlobalStorage() function
/external/clang/lib/AST/
DExpr.cpp2399 if (VD->hasGlobalStorage()) in isOBJCGCCandidate()
DASTContext.cpp1412 if (VD->hasGlobalStorage() && !ForAlignof) in getDeclAlign()
DExprConstant.cpp1267 return VD->hasGlobalStorage(); in IsGlobalLValue()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp1352 M = varDecl(hasName("X"), hasGlobalStorage()); in TEST()