Home
last modified time | relevance | path

Searched refs:FileScopeAsmDecl (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp5511 void FileScopeAsmDecl::anchor() {} in anchor()
5513 FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C, DeclContext *DC, in Create()
5517 return new (C, DC) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc); in Create()
5520 FileScopeAsmDecl *FileScopeAsmDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
5522 return new (C, ID) FileScopeAsmDecl(nullptr, nullptr, SourceLocation(), in CreateDeserialized()
H A DDeclPrinter.cpp86 void VisitFileScopeAsmDecl(FileScopeAsmDecl *D);
1065 void DeclPrinter::VisitFileScopeAsmDecl(FileScopeAsmDecl *D) { in VisitFileScopeAsmDecl()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h4377 class FileScopeAsmDecl : public Decl {
4381 FileScopeAsmDecl(DeclContext *DC, StringLiteral *asmstring, in FileScopeAsmDecl() function
4388 static FileScopeAsmDecl *Create(ASTContext &C, DeclContext *DC,
4392 static FileScopeAsmDecl *CreateDeserialized(ASTContext &C, unsigned ID);
H A DASTNodeTraverser.h486 void VisitFileScopeAsmDecl(const FileScopeAsmDecl *D) { in VisitFileScopeAsmDecl()
H A DRecursiveASTVisitor.h1534 DEF_TRAVERSE_DECL(FileScopeAsmDecl,
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp125 void VisitFileScopeAsmDecl(FileScopeAsmDecl *D);
1234 void ASTDeclWriter::VisitFileScopeAsmDecl(FileScopeAsmDecl *D) { in VisitFileScopeAsmDecl()
2704 if (isa<FileScopeAsmDecl, TopLevelStmtDecl, ObjCImplDecl>(D)) in isRequiredDecl()
H A DASTReaderDecl.cpp415 void VisitFileScopeAsmDecl(FileScopeAsmDecl *AD);
1760 void ASTDeclReader::VisitFileScopeAsmDecl(FileScopeAsmDecl *AD) { in VisitFileScopeAsmDecl()
3221 if (isa<FileScopeAsmDecl, TopLevelStmtDecl, ObjCProtocolDecl, ObjCImplDecl, in isConsumerInterestedIn()
4031 D = FileScopeAsmDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp6912 auto *AD = cast<FileScopeAsmDecl>(D); in EmitTopLevelDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp20407 FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext, in ActOnFileScopeAsmDecl()