Home
last modified time | relevance | path

Searched refs:OMPTaskLoopDirective (Results 1 – 14 of 14) sorted by relevance

/external/clang/lib/AST/
DStmtOpenMP.cpp881 OMPTaskLoopDirective *OMPTaskLoopDirective::Create( in Create()
886 llvm::alignTo(sizeof(OMPTaskLoopDirective), llvm::alignOf<OMPClause *>()); in Create()
890 OMPTaskLoopDirective *Dir = new (Mem) in Create()
891 OMPTaskLoopDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
920 OMPTaskLoopDirective *OMPTaskLoopDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
925 llvm::alignTo(sizeof(OMPTaskLoopDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty()
929 return new (Mem) OMPTaskLoopDirective(CollapsedNum, NumClauses); in CreateEmpty()
DStmtProfile.cpp682 void StmtProfiler::VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *S) { in VisitOMPTaskLoopDirective()
DStmtPrinter.cpp1150 void StmtPrinter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *Node) { in VisitOMPTaskLoopDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h2569 class OMPTaskLoopDirective : public OMPLoopDirective {
2578 OMPTaskLoopDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTaskLoopDirective() function
2588 explicit OMPTaskLoopDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPTaskLoopDirective() function
2604 static OMPTaskLoopDirective *
2616 static OMPTaskLoopDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2555 DEF_TRAVERSE_STMT(OMPTaskLoopDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td228 def OMPTaskLoopDirective : DStmt<OMPLoopDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp272 EmitOMPTaskLoopDirective(cast<OMPTaskLoopDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2500 void EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S);
DCGStmtOpenMP.cpp3603 void CodeGenFunction::EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S) { in EmitOMPTaskLoopDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2731 void ASTStmtReader::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective()
3422 S = OMPTaskLoopDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
DASTWriterStmt.cpp2429 void ASTStmtWriter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective()
/external/clang/tools/libclang/
DCIndex.cpp1969 void VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *D);
2724 void EnqueueVisitor::VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp7013 return OMPTaskLoopDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPTaskLoopDirective()
DTreeTransform.h7552 TreeTransform<Derived>::TransformOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in TransformOMPTaskLoopDirective()