Searched refs:OMPRequiresDecl (Results 1 – 19 of 19) sorted by relevance
/external/llvm-project/clang/lib/AST/ |
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()
|
D | DeclPrinter.cpp | 104 void VisitOMPRequiresDecl(OMPRequiresDecl *D); 442 isa<OMPDeclareMapperDecl>(*D) || isa<OMPRequiresDecl>(*D) || in VisitDeclContext() 1630 void DeclPrinter::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
|
D | TextNodeDumper.cpp | 1797 void TextNodeDumper::VisitOMPRequiresDecl(const OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
|
D | ASTContext.cpp | 10691 else if (isa<OMPRequiresDecl>(D)) in DeclMustBeEmitted()
|
/external/llvm-project/clang/include/clang/AST/ |
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,
|
D | TextNodeDumper.h | 337 void VisitOMPRequiresDecl(const OMPRequiresDecl *D);
|
D | RecursiveASTVisitor.h | 1599 DEF_TRAVERSE_DECL(OMPRequiresDecl, {
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGOpenMPRuntimeGPU.h | 400 void processRequiresDirective(const OMPRequiresDecl *D) override;
|
D | CodeGenModule.h | 1320 void EmitOMPRequiresDecl(const OMPRequiresDecl *D);
|
D | CGOpenMPRuntime.h | 1790 virtual void processRequiresDirective(const OMPRequiresDecl *D);
|
D | CGDecl.cpp | 2606 void CodeGenModule::EmitOMPRequiresDecl(const OMPRequiresDecl *D) { in EmitOMPRequiresDecl()
|
D | CGOpenMPRuntimeGPU.cpp | 4595 const OMPRequiresDecl *D) { in processRequiresDirective()
|
D | CodeGenModule.cpp | 5764 EmitOMPRequiresDecl(cast<OMPRequiresDecl>(D)); in EmitTopLevelDecl()
|
D | CGOpenMPRuntime.cpp | 10551 void CGOpenMPRuntime::processRequiresDirective(const OMPRequiresDecl *D) { in processRequiresDirective()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderDecl.cpp | 452 void VisitOMPRequiresDecl(OMPRequiresDecl *D); 2686 void ASTDeclReader::VisitOMPRequiresDecl(OMPRequiresDecl * D) { in VisitOMPRequiresDecl() 2847 isa<OMPRequiresDecl>(D)) in isConsumerInterestedIn() 4040 D = OMPRequiresDecl::CreateDeserialized(Context, ID, NumClauses); in ReadDeclRecord()
|
D | ASTWriterDecl.cpp | 154 void VisitOMPRequiresDecl(OMPRequiresDecl *D); 1851 void ASTDeclWriter::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 297 SmallVector<const OMPRequiresDecl *, 2> RequiresDecls; 631 void addRequiresDecl(OMPRequiresDecl *RD) { in addRequiresDecl() 638 return llvm::any_of(RequiresDecls, [](const OMPRequiresDecl *D) { in hasRequiresDeclWithClause() 650 for (const OMPRequiresDecl *D : RequiresDecls) { in hasDuplicateRequiresClause() 3185 OMPRequiresDecl *D = nullptr; in ActOnOpenMPRequiresDirective() 3198 OMPRequiresDecl *Sema::CheckOMPRequiresDecl(SourceLocation Loc, in CheckOMPRequiresDecl() 3230 return OMPRequiresDecl::Create(Context, getCurLexicalContext(), Loc, in CheckOMPRequiresDecl()
|
D | SemaTemplateInstantiateDecl.cpp | 3274 Decl *TemplateDeclInstantiator::VisitOMPRequiresDecl(OMPRequiresDecl *D) { in VisitOMPRequiresDecl()
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 165 class OMPRequiresDecl; variable 10266 OMPRequiresDecl *CheckOMPRequiresDecl(SourceLocation Loc,
|