Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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.cpp105 void VisitOMPRequiresDecl(OMPRequiresDecl *D);
449 isa<OMPDeclareMapperDecl>(*D) || isa<OMPRequiresDecl>(*D) || in VisitDeclContext()
1668 void DeclPrinter::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
H A DTextNodeDumper.cpp1851 void TextNodeDumper::VisitOMPRequiresDecl(const OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
H A DASTContext.cpp10928 else if (isa<OMPRequiresDecl>(D)) in DeclMustBeEmitted()
/freebsd-13.1/contrib/llvm-project/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.h340 void VisitOMPRequiresDecl(const OMPRequiresDecl *D);
H A DRecursiveASTVisitor.h1624 DEF_TRAVERSE_DECL(OMPRequiresDecl, {
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.h374 void processRequiresDirective(const OMPRequiresDecl *D) override;
H A DCodeGenModule.h1357 void EmitOMPRequiresDecl(const OMPRequiresDecl *D);
H A DCGOpenMPRuntime.h1818 virtual void processRequiresDirective(const OMPRequiresDecl *D);
H A DCGDecl.cpp2620 void CodeGenModule::EmitOMPRequiresDecl(const OMPRequiresDecl *D) { in EmitOMPRequiresDecl()
H A DCGOpenMPRuntimeGPU.cpp3831 const OMPRequiresDecl *D) { in processRequiresDirective()
H A DCodeGenModule.cpp5940 EmitOMPRequiresDecl(cast<OMPRequiresDecl>(D)); in EmitTopLevelDecl()
H A DCGOpenMPRuntime.cpp10880 void CGOpenMPRuntime::processRequiresDirective(const OMPRequiresDecl *D) { in processRequiresDirective()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp454 void VisitOMPRequiresDecl(OMPRequiresDecl *D);
2706 void ASTDeclReader::VisitOMPRequiresDecl(OMPRequiresDecl * D) { in VisitOMPRequiresDecl()
2867 isa<OMPRequiresDecl>(D)) in isConsumerInterestedIn()
4075 D = OMPRequiresDecl::CreateDeserialized(Context, ID, NumClauses); in ReadDeclRecord()
H A DASTWriterDecl.cpp155 void VisitOMPRequiresDecl(OMPRequiresDecl *D);
1869 void ASTDeclWriter::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp298 SmallVector<const OMPRequiresDecl *, 2> RequiresDecls;
632 void addRequiresDecl(OMPRequiresDecl *RD) { in addRequiresDecl()
639 return llvm::any_of(RequiresDecls, [](const OMPRequiresDecl *D) { in hasRequiresDeclWithClause()
651 for (const OMPRequiresDecl *D : RequiresDecls) { in hasDuplicateRequiresClause()
3201 OMPRequiresDecl *D = nullptr; in ActOnOpenMPRequiresDirective()
3272 OMPRequiresDecl *Sema::CheckOMPRequiresDecl(SourceLocation Loc, in CheckOMPRequiresDecl()
3304 return OMPRequiresDecl::Create(Context, getCurLexicalContext(), Loc, in CheckOMPRequiresDecl()
H A DSemaTemplateInstantiateDecl.cpp3399 Decl *TemplateDeclInstantiator::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h168 class OMPRequiresDecl; variable
10471 OMPRequiresDecl *CheckOMPRequiresDecl(SourceLocation Loc,