Home
last modified time | relevance | path

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

/external/clang/include/clang/StaticAnalyzer/Checkers/
DSValExplainer.h183 else if (VD->hasGlobalStorage()) in VisitVarRegion()
/external/clang/lib/StaticAnalyzer/Checkers/
DDeadStoresChecker.cpp369 if (VD->hasGlobalStorage() && in observeStmt()
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp229 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.cpp1696 SafeToInline = !V->hasGlobalStorage() || V->hasAttr<DLLImportAttr>(); in VisitDeclRefExpr()
2258 assert(D->hasGlobalStorage() && "Not a global variable"); in GetAddrOfGlobalVar()
DCGStmtOpenMP.cpp1444 VD->hasGlobalStorage()) { in EmitOMPPrivateLoopCounters()
1556 OrigVD->hasGlobalStorage() || CED) { in EmitOMPSimdFinal()
DCGExpr.cpp1872 if (VD->hasGlobalStorage()) { in setObjCGCLValueClass()
/external/v8/tools/clang/rewrite_to_chrome_style/
DRewriteToChromeStyle.cpp430 if (name.find("g_") != 0 && decl.hasGlobalStorage() && in GetNameForDecl()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h2839 AST_MATCHER(VarDecl, hasGlobalStorage) { in AST_MATCHER() argument
2840 return Node.hasGlobalStorage(); in AST_MATCHER()
/external/clang/lib/StaticAnalyzer/Core/
DMemRegion.cpp825 if (D->hasGlobalStorage() && !D->isStaticLocal()) { in getVarRegion()
/external/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp664 M = varDecl(hasName("X"), hasGlobalStorage()); in TEST()
/external/clang/lib/Sema/
DSemaStmt.cpp719 if (VD->hasGlobalStorage() && VarType.isConstQualified() && in ShouldDiagnoseSwitchCaseNotInEnum()
1466 (*I)->hasGlobalStorage()) return; in CheckForLoopConditionalStatement()
DSemaDecl.cpp6537 if (D->hasGlobalStorage()) in CheckShadow()
6896 (T->isVariableArrayType() && NewVD->hasGlobalStorage())) { in CheckVariableDeclarationType()
10367 bool GlobalStorage = var->hasGlobalStorage(); in CheckCompleteVariableDeclaration()
10542 if (Init && VD->hasGlobalStorage() && in FinalizeDeclaration()
DSemaOpenMP.cpp426 if (VD && VD->hasGlobalStorage()) in getDSA()
1125 return VD->hasGlobalStorage() && in ValidateCandidate()
1188 if (!VD->hasGlobalStorage()) { in ActOnOpenMPIdExpression()
DSemaDeclCXX.cpp11598 if (!VD->hasGlobalStorage()) return; in FinalizeVarWithDestructor()
/external/clang/include/clang/Basic/
DAttr.td106 [{S->hasGlobalStorage() && !S->getTLSKind()}]>;
109 [{S->hasGlobalStorage()}]>;
/external/clang/include/clang/AST/
DDecl.h998 bool hasGlobalStorage() const { return !hasLocalStorage(); } in hasGlobalStorage() function
/external/clang/lib/AST/
DExpr.cpp2246 if (VD->hasGlobalStorage()) in isOBJCGCCandidate()
DASTContext.cpp1407 if (VD->hasGlobalStorage() && !ForAlignof) in getDeclAlign()
DExprConstant.cpp1343 return VD->hasGlobalStorage(); in IsGlobalLValue()