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

References

tools/clang/include/clang/AST/Decl.h
 1060       return !isFileVarDecl() && getTSCSpec() == TSCS_unspecified;
 1079       && !isFileVarDecl();
tools/clang/lib/AST/ASTContext.cpp
 9956     if (!VD->isFileVarDecl())
10057   assert(VD->isFileVarDecl() && "Expected file scoped var");
tools/clang/lib/AST/ASTImporter.cpp
 3667   if (D->isFileVarDecl()) {
tools/clang/lib/AST/Decl.cpp
 2154   if (!C.getLangOpts().CPlusPlus && isFileVarDecl())
tools/clang/lib/CodeGen/CGExprConstant.cpp
 1876         if (VD->isFileVarDecl() || VD->hasExternalStorage())
tools/clang/lib/CodeGen/CodeGenModule.cpp
 2494     assert(VD->isFileVarDecl() && "Cannot emit local var decl as global.");
tools/clang/lib/Sema/SemaDecl.cpp
 4113   if (!New->hasExternalStorage() && !New->isFileVarDecl() &&
 7285         if (I->isFileVarDecl()) {
 7605     if (NewVD->isFileVarDecl() || NewVD->isStaticLocal() ||
 7706       if (NewVD->isFileVarDecl())
 7720       if (NewVD->isFileVarDecl())
11925   } else if (VDecl->isFileVarDecl()) {
12759   if (VD->isFileVarDecl() && !isa<VarTemplatePartialSpecializationDecl>(VD))
tools/clang/lib/Sema/SemaOpenMP.cpp
 2748   else if (VD && VD->isFileVarDecl())
16294     if (!VD->isFileVarDecl() && !VD->isStaticLocal() &&
tools/clang/lib/Serialization/ASTReaderDecl.cpp
 2777     return Var->isFileVarDecl() &&
tools/clang/tools/extra/clang-tidy/readability/IdentifierNamingCheck.cpp
  531       if (Decl->isFileVarDecl() && Type.getTypePtr()->isAnyPointerType() && NamingStyles[SK_GlobalConstantPointer])
  534       if (Decl->isFileVarDecl() && NamingStyles[SK_GlobalConstant])
  556     if (Decl->isFileVarDecl() && Type.getTypePtr()->isAnyPointerType() && NamingStyles[SK_GlobalPointer])
  559     if (Decl->isFileVarDecl() && NamingStyles[SK_GlobalVariable])