/external/llvm-project/clang-tools-extra/clang-tidy/modernize/ |
D | UnaryStaticAssertCheck.cpp | 25 Result.Nodes.getNodeAs<StaticAssertDecl>("static_assert"); in check()
|
/external/clang/lib/AST/ |
D | DeclCXX.cpp | 2291 void StaticAssertDecl::anchor() { } in anchor() 2293 StaticAssertDecl *StaticAssertDecl::Create(ASTContext &C, DeclContext *DC, in Create() 2299 return new (C, DC) StaticAssertDecl(DC, StaticAssertLoc, AssertExpr, Message, in Create() 2303 StaticAssertDecl *StaticAssertDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized() 2305 return new (C, ID) StaticAssertDecl(nullptr, SourceLocation(), nullptr, in CreateDeserialized()
|
D | DeclPrinter.cpp | 72 void VisitStaticAssertDecl(StaticAssertDecl *D); 795 void DeclPrinter::VisitStaticAssertDecl(StaticAssertDecl *D) { in VisitStaticAssertDecl()
|
D | ASTDumper.cpp | 449 void VisitStaticAssertDecl(const StaticAssertDecl *D); 1329 void ASTDumper::VisitStaticAssertDecl(const StaticAssertDecl *D) { in VisitStaticAssertDecl()
|
D | DeclBase.cpp | 794 isa<StaticAssertDecl>(this) || in AccessDeclContextSanity()
|
/external/llvm-project/clang/tools/libclang/ |
D | CursorVisitor.h | 242 bool VisitStaticAssertDecl(StaticAssertDecl *D);
|
/external/clang/tools/libclang/ |
D | CursorVisitor.h | 241 bool VisitStaticAssertDecl(StaticAssertDecl *D);
|
/external/llvm-project/clang/lib/AST/ |
D | DeclCXX.cpp | 3134 void StaticAssertDecl::anchor() {} in anchor() 3136 StaticAssertDecl *StaticAssertDecl::Create(ASTContext &C, DeclContext *DC, in Create() 3142 return new (C, DC) StaticAssertDecl(DC, StaticAssertLoc, AssertExpr, Message, in Create() 3146 StaticAssertDecl *StaticAssertDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized() 3148 return new (C, ID) StaticAssertDecl(nullptr, SourceLocation(), nullptr, in CreateDeserialized()
|
D | DeclPrinter.cpp | 76 void VisitStaticAssertDecl(StaticAssertDecl *D); 921 void DeclPrinter::VisitStaticAssertDecl(StaticAssertDecl *D) { in VisitStaticAssertDecl()
|
D | ODRHash.cpp | 315 void VisitStaticAssertDecl(const StaticAssertDecl *D) { in VisitStaticAssertDecl()
|
D | DeclBase.cpp | 980 isa<StaticAssertDecl>(this) || in AccessDeclContextSanity()
|
/external/clang/include/clang/AST/ |
D | DeclCXX.h | 3327 class StaticAssertDecl : public Decl { 3333 StaticAssertDecl(DeclContext *DC, SourceLocation StaticAssertLoc, in StaticAssertDecl() function 3341 static StaticAssertDecl *Create(ASTContext &C, DeclContext *DC, 3345 static StaticAssertDecl *CreateDeserialized(ASTContext &C, unsigned ID);
|
/external/llvm-project/clang/include/clang/AST/ |
D | DeclCXX.h | 3758 class StaticAssertDecl : public Decl { 3763 StaticAssertDecl(DeclContext *DC, SourceLocation StaticAssertLoc, in StaticAssertDecl() function 3775 static StaticAssertDecl *Create(ASTContext &C, DeclContext *DC, 3779 static StaticAssertDecl *CreateDeserialized(ASTContext &C, unsigned ID);
|
D | ASTNodeTraverser.h | 517 void VisitStaticAssertDecl(const StaticAssertDecl *D) { in VisitStaticAssertDecl()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaModule.cpp | 599 if (isa<StaticAssertDecl>(D)) in getUnnamedDeclKind()
|
D | SemaTemplateInstantiate.cpp | 2747 } else if (StaticAssertDecl *SA = dyn_cast<StaticAssertDecl>(NewMember)) { in InstantiateClass()
|
/external/llvm-project/clang/lib/Index/ |
D | IndexDecl.cpp | 726 bool VisitStaticAssertDecl(const StaticAssertDecl *D) { in VisitStaticAssertDecl()
|
/external/llvm-project/clang/lib/ASTMatchers/ |
D | ASTMatchersInternal.cpp | 920 const internal::VariadicDynCastAllOfMatcher<Decl, StaticAssertDecl>
|
/external/clang/lib/Sema/ |
D | SemaTemplateInstantiate.cpp | 2032 } else if (StaticAssertDecl *SA = dyn_cast<StaticAssertDecl>(NewMember)) { in InstantiateClass()
|
/external/clang/lib/Serialization/ |
D | ASTWriterDecl.cpp | 117 void VisitStaticAssertDecl(StaticAssertDecl *D); 1549 void ASTDeclWriter::VisitStaticAssertDecl(StaticAssertDecl *D) { in VisitStaticAssertDecl()
|
D | ASTReaderDecl.cpp | 334 void VisitStaticAssertDecl(StaticAssertDecl *D); 2219 void ASTDeclReader::VisitStaticAssertDecl(StaticAssertDecl *D) { in VisitStaticAssertDecl() 3347 D = StaticAssertDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTWriterDecl.cpp | 127 void VisitStaticAssertDecl(StaticAssertDecl *D); 1748 void ASTDeclWriter::VisitStaticAssertDecl(StaticAssertDecl *D) { in VisitStaticAssertDecl()
|
D | ASTReaderDecl.cpp | 402 void VisitStaticAssertDecl(StaticAssertDecl *D); 2413 void ASTDeclReader::VisitStaticAssertDecl(StaticAssertDecl *D) { in VisitStaticAssertDecl() 3938 D = StaticAssertDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
/external/llvm-project/clang/lib/Tooling/Syntax/ |
D | BuildTree.cpp | 1493 bool WalkUpFromStaticAssertDecl(StaticAssertDecl *S) { in WalkUpFromStaticAssertDecl()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 1803 StaticAssertDecl> staticAssertDecl;
|