Searched refs:OMPAllocateClause (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | OpenMPClause.cpp | 1004 OMPAllocateClause * 1005 OMPAllocateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 1011 auto *Clause = new (Mem) OMPAllocateClause(StartLoc, LParenLoc, Allocator, in Create() 1017 OMPAllocateClause *OMPAllocateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 1020 return new (Mem) OMPAllocateClause(N); in CreateEmpty() 2100 void OMPClausePrinter::VisitOMPAllocateClause(OMPAllocateClause *Node) { in VisitOMPAllocateClause()
|
H A D | StmtProfile.cpp | 840 void OMPClauseProfiler::VisitOMPAllocateClause(const OMPAllocateClause *C) { in VisitOMPAllocateClause()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 430 class OMPAllocateClause final 431 : public OMPVarListClause<OMPAllocateClause>, 432 private llvm::TrailingObjects<OMPAllocateClause, Expr *> { 451 OMPAllocateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPAllocateClause() function 454 : OMPVarListClause<OMPAllocateClause>(llvm::omp::OMPC_allocate, StartLoc, in OMPAllocateClause() 461 explicit OMPAllocateClause(unsigned N) in OMPAllocateClause() function 462 : OMPVarListClause<OMPAllocateClause>(llvm::omp::OMPC_allocate, in OMPAllocateClause() 481 static OMPAllocateClause *Create(const ASTContext &C, SourceLocation StartLoc, 496 static OMPAllocateClause *CreateEmpty(const ASTContext &C, unsigned N); 504 auto Children = const_cast<OMPAllocateClause *>(this)->children(); in children()
|
H A D | RecursiveASTVisitor.h | 3286 bool RecursiveASTVisitor<Derived>::VisitOMPAllocateClause(OMPAllocateClause *C) {
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMP.td | 54 let clangClass = "OMPAllocateClause";
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReader.cpp | 10654 C = OMPAllocateClause::CreateEmpty(Context, Record.readInt()); in readClause() 11350 void OMPClauseReader::VisitOMPAllocateClause(OMPAllocateClause *C) { in VisitOMPAllocateClause()
|
H A D | ASTWriter.cpp | 7549 void OMPClauseWriter::VisitOMPAllocateClause(OMPAllocateClause *C) { in VisitOMPAllocateClause()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 5244 llvm::make_filter_range(Clauses, OMPAllocateClause::classof); in checkAllocateClauses() 5305 auto *AC = cast<OMPAllocateClause>(C); in checkAllocateClauses() 22822 return OMPAllocateClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPAllocateClause()
|
H A D | TreeTransform.h | 10852 TreeTransform<Derived>::TransformOMPAllocateClause(OMPAllocateClause *C) { in TransformOMPAllocateClause()
|