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

References

tools/clang/include/clang/AST/ExprCXX.h
 4474     return cast<VarDecl>(ExtendingDecl)->getStorageDuration();
tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 3623   return Node.getStorageDuration() == SD_Automatic;
 3643   return Node.getStorageDuration() == SD_Static;
 3659   return Node.getStorageDuration() == SD_Thread;
tools/clang/lib/CodeGen/CGDecl.cpp
  173   if (D.getStorageDuration() != SD_Automatic) {
tools/clang/lib/CodeGen/CodeGenModule.cpp
 1651         VD->getStorageDuration() == SD_Static)
 2317         VD->getStorageDuration() == SD_Static)
tools/clang/lib/Sema/SemaDeclAttr.cpp
 6325   assert(cast<VarDecl>(D)->getStorageDuration() == SD_Automatic &&
tools/clang/lib/Serialization/ASTReaderDecl.cpp
 1407   if (VD->getStorageDuration() == SD_Static && Record.readInt())
tools/clang/lib/Serialization/ASTWriterDecl.cpp
  991   if (D->getStorageDuration() == SD_Static) {
 1045       D->getStorageDuration() != SD_Static &&
tools/clang/tools/extra/clang-tidy/cert/StaticObjectExceptionCheck.cpp
   47       << VD << (VD->getStorageDuration() == SD_Static ? 0 : 1);
tools/clang/tools/extra/clang-tidy/fuchsia/StaticallyConstructedObjectsCheck.cpp
   23   return Node.getStorageDuration() == SD_Static && !Node.isLocalVarDecl();