Searched refs:OMPParallelForDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1095 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,
|
D | DataRecursiveASTVisitor.h | 2338 DEF_TRAVERSE_STMT(OMPParallelForDirective,
|
D | RecursiveASTVisitor.h | 2368 DEF_TRAVERSE_STMT(OMPParallelForDirective,
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1865 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()
|
D | StmtProfile.cpp | 479 StmtProfiler::VisitOMPParallelForDirective(const OMPParallelForDirective *S) { in VisitOMPParallelForDirective()
|
D | StmtPrinter.cpp | 874 void StmtPrinter::VisitOMPParallelForDirective(OMPParallelForDirective *Node) { in VisitOMPParallelForDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 193 def OMPParallelForDirective : DStmt<OMPLoopDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1278 const OMPParallelForDirective &S) { in EmitOMPParallelForDirective()
|
D | CGStmt.cpp | 205 EmitOMPParallelForDirective(cast<OMPParallelForDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2129 void EmitOMPParallelForDirective(const OMPParallelForDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2144 void ASTStmtReader::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective() 2754 S = OMPParallelForDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1998 void ASTStmtWriter::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1875 void VisitOMPParallelForDirective(const OMPParallelForDirective *D); 2449 EnqueueVisitor::VisitOMPParallelForDirective(const OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 3178 return OMPParallelForDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPParallelForDirective()
|
D | TreeTransform.h | 6803 OMPParallelForDirective *D) { in TransformOMPParallelForDirective()
|