Searched refs:OMPParallelForDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 347 OMPParallelForDirective *OMPParallelForDirective::Create( in Create() 351 unsigned Size = llvm::alignTo(sizeof(OMPParallelForDirective), in Create() 356 OMPParallelForDirective *Dir = new (Mem) in Create() 357 OMPParallelForDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create() 387 OMPParallelForDirective * 388 OMPParallelForDirective::CreateEmpty(const ASTContext &C, unsigned NumClauses, in CreateEmpty() 390 unsigned Size = llvm::alignTo(sizeof(OMPParallelForDirective), in CreateEmpty() 395 return new (Mem) OMPParallelForDirective(CollapsedNum, NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 595 StmtProfiler::VisitOMPParallelForDirective(const OMPParallelForDirective *S) { in VisitOMPParallelForDirective()
|
D | StmtPrinter.cpp | 1041 void StmtPrinter::VisitOMPParallelForDirective(OMPParallelForDirective *Node) { in VisitOMPParallelForDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1302 class OMPParallelForDirective : public OMPLoopDirective { 1315 OMPParallelForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelForDirective() function 1326 explicit OMPParallelForDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPParallelForDirective() function 1347 static OMPParallelForDirective * 1359 static OMPParallelForDirective *CreateEmpty(const ASTContext &C,
|
D | RecursiveASTVisitor.h | 2492 DEF_TRAVERSE_STMT(OMPParallelForDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 207 def OMPParallelForDirective : DStmt<OMPLoopDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 212 EmitOMPParallelForDirective(cast<OMPParallelForDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2476 void EmitOMPParallelForDirective(const OMPParallelForDirective &S);
|
D | CGStmtOpenMP.cpp | 2374 const OMPParallelForDirective &S) { in EmitOMPParallelForDirective()
|
D | CGOpenMPRuntime.cpp | 853 else if (auto *OPFD = dyn_cast<OMPParallelForDirective>(&D)) in emitParallelOrTeamsOutlinedFunction()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2595 void ASTStmtReader::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective() 3313 S = OMPParallelForDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2281 void ASTStmtWriter::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1947 void VisitOMPParallelForDirective(const OMPParallelForDirective *D); 2634 EnqueueVisitor::VisitOMPParallelForDirective(const OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5793 return OMPParallelForDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPParallelForDirective()
|
D | TreeTransform.h | 7321 OMPParallelForDirective *D) { in TransformOMPParallelForDirective()
|