Searched refs:OMPRequiresDecl (Results 1 – 19 of 19) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | DeclOpenMP.cpp | 84 void OMPRequiresDecl::anchor() {} in anchor() 86 OMPRequiresDecl *OMPRequiresDecl::Create(ASTContext &C, DeclContext *DC, in Create() 89 return OMPDeclarativeDirective::createDirective<OMPRequiresDecl>(C, DC, CL, 0, in Create() 93 OMPRequiresDecl *OMPRequiresDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized() 96 return OMPDeclarativeDirective::createEmptyDirective<OMPRequiresDecl>( in CreateDeserialized()
|
H A D | DeclPrinter.cpp | 107 void VisitOMPRequiresDecl(OMPRequiresDecl *D); 495 isa<OMPDeclareMapperDecl>(*D) || isa<OMPRequiresDecl>(*D) || in VisitDeclContext() 1802 void DeclPrinter::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
|
H A D | TextNodeDumper.cpp | 2357 void TextNodeDumper::VisitOMPRequiresDecl(const OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
|
H A D | ASTContext.cpp | 12327 else if (isa<OMPRequiresDecl>(D)) in DeclMustBeEmitted()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclOpenMP.h | 417 class OMPRequiresDecl final : public OMPDeclarativeDirective<Decl> { 423 OMPRequiresDecl(DeclContext *DC, SourceLocation L) in OMPRequiresDecl() function 428 static OMPRequiresDecl *Create(ASTContext &C, DeclContext *DC, 431 static OMPRequiresDecl *CreateDeserialized(ASTContext &C, GlobalDeclID ID,
|
H A D | TextNodeDumper.h | 370 void VisitOMPRequiresDecl(const OMPRequiresDecl *D);
|
H A D | RecursiveASTVisitor.h | 1780 DEF_TRAVERSE_DECL(OMPRequiresDecl, {
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGOpenMPRuntimeGPU.h | 330 void processRequiresDirective(const OMPRequiresDecl *D) override;
|
H A D | CGOpenMPRuntime.h | 1571 virtual void processRequiresDirective(const OMPRequiresDecl *D);
|
H A D | CodeGenModule.h | 1496 void EmitOMPRequiresDecl(const OMPRequiresDecl *D);
|
H A D | CGOpenMPRuntimeGPU.cpp | 2247 void CGOpenMPRuntimeGPU::processRequiresDirective(const OMPRequiresDecl *D) { in processRequiresDirective()
|
H A D | CGDecl.cpp | 2788 void CodeGenModule::EmitOMPRequiresDecl(const OMPRequiresDecl *D) { in EmitOMPRequiresDecl()
|
H A D | CodeGenModule.cpp | 7139 EmitOMPRequiresDecl(cast<OMPRequiresDecl>(D)); in EmitTopLevelDecl()
|
H A D | CGOpenMPRuntime.cpp | 10075 void CGOpenMPRuntime::processRequiresDirective(const OMPRequiresDecl *D) { in processRequiresDirective()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 470 void VisitOMPRequiresDecl(OMPRequiresDecl *D); 3038 void ASTDeclReader::VisitOMPRequiresDecl(OMPRequiresDecl * D) { in VisitOMPRequiresDecl() 3202 OMPAllocateDecl, OMPRequiresDecl>(D)) in isConsumerInterestedIn() 4106 D = OMPRequiresDecl::CreateDeserialized(Context, ID, NumClauses); in ReadDeclRecord()
|
H A D | ASTWriterDecl.cpp | 160 void VisitOMPRequiresDecl(OMPRequiresDecl *D); 2113 void ASTDeclWriter::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaOpenMP.h | 254 OMPRequiresDecl *CheckOMPRequiresDecl(SourceLocation Loc,
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 331 SmallVector<const OMPRequiresDecl *, 2> RequiresDecls; 685 void addRequiresDecl(OMPRequiresDecl *RD) { RequiresDecls.push_back(RD); } in addRequiresDecl() 689 return llvm::any_of(RequiresDecls, [](const OMPRequiresDecl *D) { in hasRequiresDeclWithClause() 701 for (const OMPRequiresDecl *D : RequiresDecls) { in hasDuplicateRequiresClause() 3516 OMPRequiresDecl *D = nullptr; in ActOnOpenMPRequiresDirective() 3587 OMPRequiresDecl * 3620 return OMPRequiresDecl::Create( in CheckOMPRequiresDecl()
|
H A D | SemaTemplateInstantiateDecl.cpp | 3643 Decl *TemplateDeclInstantiator::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
|