Searched refs:OMPRequiresDecl (Results 1 – 19 of 19) sorted by relevance
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | DeclOpenMP.cpp | 83 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 D | DeclPrinter.cpp | 105 void VisitOMPRequiresDecl(OMPRequiresDecl *D); 450 isa<OMPDeclareMapperDecl>(*D) || isa<OMPRequiresDecl>(*D) || in VisitDeclContext() 1682 void DeclPrinter::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
|
| H A D | TextNodeDumper.cpp | 1884 void TextNodeDumper::VisitOMPRequiresDecl(const OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
|
| H A D | ASTContext.cpp | 11565 else if (isa<OMPRequiresDecl>(D)) in DeclMustBeEmitted()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | DeclOpenMP.h | 416 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 D | TextNodeDumper.h | 344 void VisitOMPRequiresDecl(const OMPRequiresDecl *D);
|
| H A D | RecursiveASTVisitor.h | 1751 DEF_TRAVERSE_DECL(OMPRequiresDecl, {
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntimeGPU.h | 375 void processRequiresDirective(const OMPRequiresDecl *D) override;
|
| H A D | CodeGenModule.h | 1402 void EmitOMPRequiresDecl(const OMPRequiresDecl *D);
|
| H A D | CGOpenMPRuntime.h | 1820 virtual void processRequiresDirective(const OMPRequiresDecl *D);
|
| H A D | CGDecl.cpp | 2640 void CodeGenModule::EmitOMPRequiresDecl(const OMPRequiresDecl *D) { in EmitOMPRequiresDecl()
|
| H A D | CGOpenMPRuntimeGPU.cpp | 3887 const OMPRequiresDecl *D) { in processRequiresDirective()
|
| H A D | CodeGenModule.cpp | 6346 EmitOMPRequiresDecl(cast<OMPRequiresDecl>(D)); in EmitTopLevelDecl()
|
| H A D | CGOpenMPRuntime.cpp | 10840 void CGOpenMPRuntime::processRequiresDirective(const OMPRequiresDecl *D) { in processRequiresDirective()
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 456 void VisitOMPRequiresDecl(OMPRequiresDecl *D); 2814 void ASTDeclReader::VisitOMPRequiresDecl(OMPRequiresDecl * D) { in VisitOMPRequiresDecl() 2976 isa<OMPRequiresDecl>(D)) in isConsumerInterestedIn() 3825 D = OMPRequiresDecl::CreateDeserialized(Context, ID, NumClauses); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 156 void VisitOMPRequiresDecl(OMPRequiresDecl *D); 1879 void ASTDeclWriter::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 318 SmallVector<const OMPRequiresDecl *, 2> RequiresDecls; 654 void addRequiresDecl(OMPRequiresDecl *RD) { RequiresDecls.push_back(RD); } in addRequiresDecl() 658 return llvm::any_of(RequiresDecls, [](const OMPRequiresDecl *D) { in hasRequiresDeclWithClause() 670 for (const OMPRequiresDecl *D : RequiresDecls) { in hasDuplicateRequiresClause() 3400 OMPRequiresDecl *D = nullptr; in ActOnOpenMPRequiresDirective() 3470 OMPRequiresDecl *Sema::CheckOMPRequiresDecl(SourceLocation Loc, in CheckOMPRequiresDecl() 3502 return OMPRequiresDecl::Create(Context, getCurLexicalContext(), Loc, in CheckOMPRequiresDecl()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 3461 Decl *TemplateDeclInstantiator::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | Sema.h | 167 class OMPRequiresDecl; variable 10857 OMPRequiresDecl *CheckOMPRequiresDecl(SourceLocation Loc,
|