Home
last modified time | relevance | path

Searched refs:OMPParallelForDirective (Results 1 – 15 of 15) sorted by relevance

/external/clang/include/clang/AST/
DStmtOpenMP.h1095 class OMPParallelForDirective : public OMPLoopDirective {
1104 OMPParallelForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelForDirective() function
1114 explicit OMPParallelForDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPParallelForDirective() function
1130 static OMPParallelForDirective *
1142 static OMPParallelForDirective *CreateEmpty(const ASTContext &C,
DDataRecursiveASTVisitor.h2338 DEF_TRAVERSE_STMT(OMPParallelForDirective,
DRecursiveASTVisitor.h2368 DEF_TRAVERSE_STMT(OMPParallelForDirective,
/external/clang/lib/AST/
DStmt.cpp1865 OMPParallelForDirective *OMPParallelForDirective::Create( in Create()
1869 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPParallelForDirective), in Create()
1874 OMPParallelForDirective *Dir = new (Mem) in Create()
1875 OMPParallelForDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
1898 OMPParallelForDirective *
1899 OMPParallelForDirective::CreateEmpty(const ASTContext &C, unsigned NumClauses, in CreateEmpty()
1901 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPParallelForDirective), in CreateEmpty()
1906 return new (Mem) OMPParallelForDirective(CollapsedNum, NumClauses); in CreateEmpty()
DStmtProfile.cpp479 StmtProfiler::VisitOMPParallelForDirective(const OMPParallelForDirective *S) { in VisitOMPParallelForDirective()
DStmtPrinter.cpp874 void StmtPrinter::VisitOMPParallelForDirective(OMPParallelForDirective *Node) { in VisitOMPParallelForDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td193 def OMPParallelForDirective : DStmt<OMPLoopDirective>;
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1278 const OMPParallelForDirective &S) { in EmitOMPParallelForDirective()
DCGStmt.cpp205 EmitOMPParallelForDirective(cast<OMPParallelForDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2129 void EmitOMPParallelForDirective(const OMPParallelForDirective &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2144 void ASTStmtReader::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
2754 S = OMPParallelForDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
DASTWriterStmt.cpp1998 void ASTStmtWriter::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
/external/clang/tools/libclang/
DCIndex.cpp1875 void VisitOMPParallelForDirective(const OMPParallelForDirective *D);
2449 EnqueueVisitor::VisitOMPParallelForDirective(const OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp3178 return OMPParallelForDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPParallelForDirective()
DTreeTransform.h6803 OMPParallelForDirective *D) { in TransformOMPParallelForDirective()