Home
last modified time | relevance | path

Searched refs:OMPAllocateDecl (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclOpenMP.cpp55 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 DDeclPrinter.cpp106 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 DASTContext.cpp12331 else if (isa<OMPAllocateDecl>(D)) in DeclMustBeEmitted()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclOpenMP.h474 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 DASTNodeTraverser.h605 void VisitOMPAllocateDecl(const OMPAllocateDecl *D) { in VisitOMPAllocateDecl()
H A DRecursiveASTVisitor.h1803 DEF_TRAVERSE_DECL(OMPAllocateDecl, {
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp467 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 DASTWriterDecl.cpp159 void VisitOMPAllocateDecl(OMPAllocateDecl *D);
2107 void ASTDeclWriter::VisitOMPAllocateDecl(OMPAllocateDecl *D) { in VisitOMPAllocateDecl()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.h1500 void EmitOMPAllocateDecl(const OMPAllocateDecl *D);
H A DCGDecl.cpp2792 void CodeGenModule::EmitOMPAllocateDecl(const OMPAllocateDecl *D) { in EmitOMPAllocateDecl()
H A DCodeGenModule.cpp7127 EmitOMPAllocateDecl(cast<OMPAllocateDecl>(D)); in EmitTopLevelDecl()
H A DCGOpenMPRuntime.cpp6001 isa<OMPThreadPrivateDecl>(D) || isa<OMPAllocateDecl>(D)) in getSingleCompoundChild()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp3606 Decl *TemplateDeclInstantiator::VisitOMPAllocateDecl(OMPAllocateDecl *D) { in VisitOMPAllocateDecl()
H A DSemaOpenMP.cpp3507 auto *D = OMPAllocateDecl::Create(getASTContext(), Owner, Loc, Vars, Clauses); in ActOnOpenMPAllocateDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td4285 def OMPAllocateDecl : InheritableAttr {