Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/clang/tools/libclang/
H A DCursorVisitor.h242 bool VisitStaticAssertDecl(StaticAssertDecl *D);
H A DCIndex.cpp1284 bool CursorVisitor::VisitStaticAssertDecl(StaticAssertDecl *D) { in VisitStaticAssertDecl()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclCXX.cpp3153 void StaticAssertDecl::anchor() {} in anchor()
3155 StaticAssertDecl *StaticAssertDecl::Create(ASTContext &C, DeclContext *DC, in Create()
3161 return new (C, DC) StaticAssertDecl(DC, StaticAssertLoc, AssertExpr, Message, in Create()
3165 StaticAssertDecl *StaticAssertDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
3167 return new (C, ID) StaticAssertDecl(nullptr, SourceLocation(), nullptr, in CreateDeserialized()
H A DDeclPrinter.cpp76 void VisitStaticAssertDecl(StaticAssertDecl *D);
937 void DeclPrinter::VisitStaticAssertDecl(StaticAssertDecl *D) { in VisitStaticAssertDecl()
H A DODRHash.cpp315 void VisitStaticAssertDecl(const StaticAssertDecl *D) { in VisitStaticAssertDecl()
H A DDeclBase.cpp977 isa<StaticAssertDecl>(this) || isa<BlockDecl>(this) || in AccessDeclContextSanity()
H A DASTImporter.cpp482 ExpectedDecl VisitStaticAssertDecl(StaticAssertDecl *D);
2304 ExpectedDecl ASTNodeImporter::VisitStaticAssertDecl(StaticAssertDecl *D) { in VisitStaticAssertDecl()
2319 StaticAssertDecl *ToD; in VisitStaticAssertDecl()
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h3779 class StaticAssertDecl : public Decl {
3784 StaticAssertDecl(DeclContext *DC, SourceLocation StaticAssertLoc, in StaticAssertDecl() function
3796 static StaticAssertDecl *Create(ASTContext &C, DeclContext *DC,
3800 static StaticAssertDecl *CreateDeserialized(ASTContext &C, unsigned ID);
H A DASTNodeTraverser.h520 void VisitStaticAssertDecl(const StaticAssertDecl *D) { in VisitStaticAssertDecl()
H A DRecursiveASTVisitor.h1493 DEF_TRAVERSE_DECL(StaticAssertDecl, {
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaModule.cpp599 if (isa<StaticAssertDecl>(D)) in getUnnamedDeclKind()
H A DSemaTemplateInstantiate.cpp2750 } else if (StaticAssertDecl *SA = dyn_cast<StaticAssertDecl>(NewMember)) { in InstantiateClass()
H A DSemaTemplateInstantiateDecl.cpp1280 Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) { in VisitStaticAssertDecl()
H A DSemaDecl.cpp4456 if (isa<StaticAssertDecl>(D) || isa<IndirectFieldDecl>(D) || in getNonCLikeKindForAnonymousStruct()
5131 } else if (isa<StaticAssertDecl>(Mem)) { in BuildAnonymousStructOrUnion()
H A DSemaDeclCXX.cpp16175 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc, in BuildStaticAssertDeclaration()
/netbsd/external/apache2/llvm/dist/clang/lib/Index/
H A DIndexDecl.cpp726 bool VisitStaticAssertDecl(const StaticAssertDecl *D) { in VisitStaticAssertDecl()
/netbsd/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp944 const internal::VariadicDynCastAllOfMatcher<Decl, StaticAssertDecl>
/netbsd/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterDecl.cpp126 void VisitStaticAssertDecl(StaticAssertDecl *D);
1748 void ASTDeclWriter::VisitStaticAssertDecl(StaticAssertDecl *D) { in VisitStaticAssertDecl()
H A DASTReaderDecl.cpp402 void VisitStaticAssertDecl(StaticAssertDecl *D);
2415 void ASTDeclReader::VisitStaticAssertDecl(StaticAssertDecl *D) { in VisitStaticAssertDecl()
3940 D = StaticAssertDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTReader.cpp10346 StaticAssertDecl *FirstSA = cast<StaticAssertDecl>(FirstDecl); in diagnoseOdrViolations()
10347 StaticAssertDecl *SecondSA = cast<StaticAssertDecl>(SecondDecl); in diagnoseOdrViolations()
/netbsd/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1527 bool WalkUpFromStaticAssertDecl(StaticAssertDecl *S) { in WalkUpFromStaticAssertDecl()
/netbsd/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2520 extern const internal::VariadicDynCastAllOfMatcher<Decl, StaticAssertDecl>