Home
last modified time | relevance | path

Searched refs:OMPAllocateClause (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/clang/lib/AST/
DOpenMPClause.cpp907 OMPAllocateClause *
908 OMPAllocateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
914 auto *Clause = new (Mem) OMPAllocateClause(StartLoc, LParenLoc, Allocator, in Create()
920 OMPAllocateClause *OMPAllocateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
923 return new (Mem) OMPAllocateClause(N); in CreateEmpty()
1749 void OMPClausePrinter::VisitOMPAllocateClause(OMPAllocateClause *Node) { in VisitOMPAllocateClause()
DStmtProfile.cpp756 void OMPClauseProfiler::VisitOMPAllocateClause(const OMPAllocateClause *C) { in VisitOMPAllocateClause()
/external/llvm-project/clang/include/clang/AST/
DOpenMPClause.h332 class OMPAllocateClause final
333 : public OMPVarListClause<OMPAllocateClause>,
334 private llvm::TrailingObjects<OMPAllocateClause, Expr *> {
353 OMPAllocateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPAllocateClause() function
356 : OMPVarListClause<OMPAllocateClause>(llvm::omp::OMPC_allocate, StartLoc, in OMPAllocateClause()
363 explicit OMPAllocateClause(unsigned N) in OMPAllocateClause() function
364 : OMPVarListClause<OMPAllocateClause>(llvm::omp::OMPC_allocate, in OMPAllocateClause()
383 static OMPAllocateClause *Create(const ASTContext &C, SourceLocation StartLoc,
398 static OMPAllocateClause *CreateEmpty(const ASTContext &C, unsigned N);
406 auto Children = const_cast<OMPAllocateClause *>(this)->children(); in children()
DRecursiveASTVisitor.h2989 bool RecursiveASTVisitor<Derived>::VisitOMPAllocateClause(OMPAllocateClause *C) {
/external/llvm-project/llvm/include/llvm/Frontend/OpenMP/
DOMP.td255 let clangClass = "OMPAllocateClause";
DOMPKinds.def104 __OMP_CLAUSE(allocate, OMPAllocateClause)
/external/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp4930 llvm::make_filter_range(Clauses, OMPAllocateClause::classof); in checkAllocateClauses()
4992 auto *AC = cast<OMPAllocateClause>(C); in checkAllocateClauses()
19131 return OMPAllocateClause::Create(Context, StartLoc, LParenLoc, Allocator, in ActOnOpenMPAllocateClause()
DTreeTransform.h9648 TreeTransform<Derived>::TransformOMPAllocateClause(OMPAllocateClause *C) { in TransformOMPAllocateClause()
/external/llvm-project/clang/lib/Serialization/
DASTReader.cpp12062 C = OMPAllocateClause::CreateEmpty(Context, Record.readInt()); in readClause()
12636 void OMPClauseReader::VisitOMPAllocateClause(OMPAllocateClause *C) { in VisitOMPAllocateClause()
DASTWriter.cpp6612 void OMPClauseWriter::VisitOMPAllocateClause(OMPAllocateClause *C) { in VisitOMPAllocateClause()
/external/llvm-project/clang/tools/libclang/
DCIndex.cpp2331 void OMPClauseEnqueue::VisitOMPAllocateClause(const OMPAllocateClause *C) { in VisitOMPAllocateClause()