Searched refs:OMPAllocateDecl (Results 1 – 15 of 15) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | DeclOpenMP.cpp | 55 void OMPAllocateDecl::anchor() { } in anchor() 57 OMPAllocateDecl *OMPAllocateDecl::Create(ASTContext &C, DeclContext *DC, in Create() 60 auto *D = OMPDeclarativeDirective::createDirective<OMPAllocateDecl>( in Create() 66 OMPAllocateDecl *OMPAllocateDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized() 70 return OMPDeclarativeDirective::createEmptyDirective<OMPAllocateDecl>( in CreateDeserialized() 74 void OMPAllocateDecl::setVars(ArrayRef<Expr *> VL) { in setVars()
|
H A D | DeclPrinter.cpp | 106 void VisitOMPAllocateDecl(OMPAllocateDecl *D); 496 isa<OMPAllocateDecl>(*D)) in VisitDeclContext() 1781 void DeclPrinter::VisitOMPAllocateDecl(OMPAllocateDecl *D) { in VisitOMPAllocateDecl() 1784 for (OMPAllocateDecl::varlist_iterator I = D->varlist_begin(), in VisitOMPAllocateDecl()
|
H A D | ASTContext.cpp | 12331 else if (isa<OMPAllocateDecl>(D)) in DeclMustBeEmitted()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclOpenMP.h | 474 class OMPAllocateDecl final : public OMPDeclarativeDirective<Decl> { 480 OMPAllocateDecl(DeclContext *DC, SourceLocation L) in OMPAllocateDecl() function 496 static OMPAllocateDecl *Create(ASTContext &C, DeclContext *DC, 499 static OMPAllocateDecl *CreateDeserialized(ASTContext &C, GlobalDeclID ID,
|
H A D | ASTNodeTraverser.h | 605 void VisitOMPAllocateDecl(const OMPAllocateDecl *D) { in VisitOMPAllocateDecl()
|
H A D | RecursiveASTVisitor.h | 1803 DEF_TRAVERSE_DECL(OMPAllocateDecl, {
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 467 void VisitOMPAllocateDecl(OMPAllocateDecl *D); 3033 void ASTDeclReader::VisitOMPAllocateDecl(OMPAllocateDecl *D) { in VisitOMPAllocateDecl() 3202 OMPAllocateDecl, OMPRequiresDecl>(D)) in isConsumerInterestedIn() 4100 D = OMPAllocateDecl::CreateDeserialized(Context, ID, NumVars, NumClauses); in ReadDeclRecord()
|
H A D | ASTWriterDecl.cpp | 159 void VisitOMPAllocateDecl(OMPAllocateDecl *D); 2107 void ASTDeclWriter::VisitOMPAllocateDecl(OMPAllocateDecl *D) { in VisitOMPAllocateDecl()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenModule.h | 1500 void EmitOMPAllocateDecl(const OMPAllocateDecl *D);
|
H A D | CGDecl.cpp | 2792 void CodeGenModule::EmitOMPAllocateDecl(const OMPAllocateDecl *D) { in EmitOMPAllocateDecl()
|
H A D | CodeGenModule.cpp | 7127 EmitOMPAllocateDecl(cast<OMPAllocateDecl>(D)); in EmitTopLevelDecl()
|
H A D | CGOpenMPRuntime.cpp | 6001 isa<OMPThreadPrivateDecl>(D) || isa<OMPAllocateDecl>(D)) in getSingleCompoundChild()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaTemplateInstantiateDecl.cpp | 3606 Decl *TemplateDeclInstantiator::VisitOMPAllocateDecl(OMPAllocateDecl *D) { in VisitOMPAllocateDecl()
|
H A D | SemaOpenMP.cpp | 3507 auto *D = OMPAllocateDecl::Create(getASTContext(), Owner, Loc, Vars, Clauses); in ActOnOpenMPAllocateDirective()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Attr.td | 4285 def OMPAllocateDecl : InheritableAttr {
|