reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 3578   return Node.isStaticLocal();
tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
  190     else if (VD->isStaticLocal())
tools/clang/lib/AST/ASTContext.cpp
 9876   if (VD->isStaticLocal()) {
tools/clang/lib/AST/Decl.cpp
 1263     if (!Var->isStaticLocal())
 1294       assert(cast<VarDecl>(D)->isStaticLocal());
tools/clang/lib/AST/MicrosoftMangle.cpp
  551   else if (!VD->isStaticLocal())
tools/clang/lib/AST/ODRHash.cpp
  295     Hash.AddBoolean(D->isStaticLocal());
tools/clang/lib/Analysis/CFG.cpp
 2824   if (BuildOpts.AddStaticInitBranches && VD->isStaticLocal()) {
tools/clang/lib/CodeGen/CGExpr.cpp
 2618     } else if (VD->isStaticLocal()) {
tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
  931             Address(VD->isStaticLocal() ? CGM.getStaticLocalDeclAddress(VD)
tools/clang/lib/CodeGen/CodeGenModule.cpp
 4052   if (!D->isStaticLocal() && D->getTLSKind() == VarDecl::TLS_Dynamic &&
tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
 2478   assert(!VD->isStaticLocal() && "static local VarDecls don't need wrappers!");
tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
 2431   if (!D.isStaticLocal()) {
tools/clang/lib/Sema/SemaCUDA.cpp
  497     assert(!VD->isStaticLocal() || VD->hasAttr<CUDASharedAttr>());
tools/clang/lib/Sema/SemaDecl.cpp
 5056     if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
 6179          (!ND.isExternallyVisible() || (VD && VD->isStaticLocal())))) {
 7126   if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
 7570       NewVD->isStaticLocal()) {
 7605     if (NewVD->isFileVarDecl() || NewVD->isStaticLocal() ||
 7612         int Scope = NewVD->isStaticLocal() | NewVD->hasExternalStorage() << 1;
 7709       else if (NewVD->isStaticLocal())
11054       } else if (cast<VarDecl>(OrigDecl)->isStaticLocal()) {
12483   bool IsGlobal = GlobalStorage && !var->isStaticLocal();
12574   assert(VD->isStaticLocal());
12670   if (VD->isStaticLocal()) {
12734       assert(VD->isStaticLocal());
tools/clang/lib/Sema/SemaDeclCXX.cpp
 1834         if (VD->isStaticLocal()) {
13625   if (!VD->isStaticLocal())
tools/clang/lib/Sema/SemaOpenMP.cpp
 2294         << getOpenMPDirectiveName(Kind) << !VD->isStaticLocal();
 2744   } else if (VD && VD->isStaticLocal())
16294     if (!VD->isFileVarDecl() && !VD->isStaticLocal() &&
tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
  923   if (Var->isStaticLocal())
tools/clang/lib/Serialization/ASTCommon.cpp
  441       return VD->isStaticLocal();
tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
  101     if (VD->isStaticLocal())
tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
 2031         if (VD->isStaticLocal())
tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
 1234     assert(VR->getDecl()->isStaticLocal() && "non-static stackless VarRegion");
tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
   56       if (VD->isStaticLocal())
tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
  850   if (D->hasGlobalStorage() && !D->isStaticLocal()) {
  897         assert(D->isStaticLocal());
tools/clang/tools/extra/clang-tidy/misc/DefinitionsInHeadersCheck.cpp
  144     if (VD->hasLocalStorage() || VD->isStaticLocal())
tools/clang/tools/extra/clang-tidy/readability/IdentifierNamingCheck.cpp
  537       if (Decl->isStaticLocal() && NamingStyles[SK_StaticConstant])
  562     if (Decl->isStaticLocal() && NamingStyles[SK_StaticVariable])