Home
last modified time | relevance | path

Searched refs:OMPRequiresDecl (Results 1 – 19 of 19) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDeclOpenMP.cpp83 void OMPRequiresDecl::anchor() {} in anchor()
85 OMPRequiresDecl *OMPRequiresDecl::Create(ASTContext &C, DeclContext *DC, in Create()
88 return OMPDeclarativeDirective::createDirective<OMPRequiresDecl>(C, DC, CL, 0, in Create()
92 OMPRequiresDecl *OMPRequiresDecl::CreateDeserialized(ASTContext &C, unsigned ID, in CreateDeserialized()
94 return OMPDeclarativeDirective::createEmptyDirective<OMPRequiresDecl>( in CreateDeserialized()
H A DDeclPrinter.cpp106 void VisitOMPRequiresDecl(OMPRequiresDecl *D);
452 isa<OMPDeclareMapperDecl>(*D) || isa<OMPRequiresDecl>(*D) || in VisitDeclContext()
1701 void DeclPrinter::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
H A DTextNodeDumper.cpp1906 void TextNodeDumper::VisitOMPRequiresDecl(const OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
H A DASTContext.cpp11710 else if (isa<OMPRequiresDecl>(D)) in DeclMustBeEmitted()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclOpenMP.h416 class OMPRequiresDecl final : public OMPDeclarativeDirective<Decl> {
422 OMPRequiresDecl(DeclContext *DC, SourceLocation L) in OMPRequiresDecl() function
427 static OMPRequiresDecl *Create(ASTContext &C, DeclContext *DC,
430 static OMPRequiresDecl *CreateDeserialized(ASTContext &C, unsigned ID,
H A DTextNodeDumper.h347 void VisitOMPRequiresDecl(const OMPRequiresDecl *D);
H A DRecursiveASTVisitor.h1744 DEF_TRAVERSE_DECL(OMPRequiresDecl, {
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.h363 void processRequiresDirective(const OMPRequiresDecl *D) override;
H A DCodeGenModule.h1418 void EmitOMPRequiresDecl(const OMPRequiresDecl *D);
H A DCGOpenMPRuntime.h1551 virtual void processRequiresDirective(const OMPRequiresDecl *D);
H A DCGDecl.cpp2644 void CodeGenModule::EmitOMPRequiresDecl(const OMPRequiresDecl *D) { in EmitOMPRequiresDecl()
H A DCGOpenMPRuntimeGPU.cpp3527 const OMPRequiresDecl *D) { in processRequiresDirective()
H A DCodeGenModule.cpp6550 EmitOMPRequiresDecl(cast<OMPRequiresDecl>(D)); in EmitTopLevelDecl()
H A DCGOpenMPRuntime.cpp10457 void CGOpenMPRuntime::processRequiresDirective(const OMPRequiresDecl *D) { in processRequiresDirective()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderDecl.cpp461 void VisitOMPRequiresDecl(OMPRequiresDecl *D);
2906 void ASTDeclReader::VisitOMPRequiresDecl(OMPRequiresDecl * D) { in VisitOMPRequiresDecl()
3065 OMPAllocateDecl, OMPRequiresDecl>(D)) in isConsumerInterestedIn()
3917 D = OMPRequiresDecl::CreateDeserialized(Context, ID, NumClauses); in ReadDeclRecord()
H A DASTWriterDecl.cpp159 void VisitOMPRequiresDecl(OMPRequiresDecl *D);
1918 void ASTDeclWriter::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaOpenMP.cpp321 SmallVector<const OMPRequiresDecl *, 2> RequiresDecls;
657 void addRequiresDecl(OMPRequiresDecl *RD) { RequiresDecls.push_back(RD); } in addRequiresDecl()
661 return llvm::any_of(RequiresDecls, [](const OMPRequiresDecl *D) { in hasRequiresDeclWithClause()
673 for (const OMPRequiresDecl *D : RequiresDecls) { in hasDuplicateRequiresClause()
3453 OMPRequiresDecl *D = nullptr; in ActOnOpenMPRequiresDirective()
3523 OMPRequiresDecl *Sema::CheckOMPRequiresDecl(SourceLocation Loc, in CheckOMPRequiresDecl()
3555 return OMPRequiresDecl::Create(Context, getCurLexicalContext(), Loc, in CheckOMPRequiresDecl()
H A DSemaTemplateInstantiateDecl.cpp3528 Decl *TemplateDeclInstantiator::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h167 class OMPRequiresDecl; variable
11187 OMPRequiresDecl *CheckOMPRequiresDecl(SourceLocation Loc,