/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/llvm-project/clang/lib/AST/ |
D | StmtOpenMP.cpp | 424 OMPParallelForDirective *OMPParallelForDirective::Create( in Create() 428 auto *Dir = createDirective<OMPParallelForDirective>( in Create() 461 OMPParallelForDirective * 462 OMPParallelForDirective::CreateEmpty(const ASTContext &C, unsigned NumClauses, in CreateEmpty() 464 return createEmptyDirective<OMPParallelForDirective>( in CreateEmpty()
|
D | StmtProfile.cpp | 892 StmtProfiler::VisitOMPParallelForDirective(const OMPParallelForDirective *S) { in VisitOMPParallelForDirective()
|
D | StmtPrinter.cpp | 703 void StmtPrinter::VisitOMPParallelForDirective(OMPParallelForDirective *Node) { in VisitOMPParallelForDirective()
|
/external/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1701 class OMPParallelForDirective : public OMPLoopDirective { 1714 OMPParallelForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelForDirective() function 1724 explicit OMPParallelForDirective(unsigned CollapsedNum) in OMPParallelForDirective() function 1752 static OMPParallelForDirective * 1765 static OMPParallelForDirective *CreateEmpty(const ASTContext &C, 1776 return const_cast<OMPParallelForDirective *>(this) in getTaskReductionRefExpr()
|
D | RecursiveASTVisitor.h | 2811 DEF_TRAVERSE_STMT(OMPParallelForDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 207 def OMPParallelForDirective : DStmt<OMPLoopDirective>;
|
/external/llvm-project/clang/include/clang/Basic/ |
D | StmtNodes.td | 230 def OMPParallelForDirective : StmtNode<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/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2336 void ASTStmtReader::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective() 3190 S = OMPParallelForDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2241 void ASTStmtWriter::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
|
/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/llvm-project/clang/lib/CodeGen/ |
D | CGStmt.cpp | 225 EmitOMPParallelForDirective(cast<OMPParallelForDirective>(*S)); in EmitStmt()
|
D | CGStmtOpenMP.cpp | 1296 TaskRedRef = cast<OMPParallelForDirective>(D).getTaskReductionRefExpr(); in EmitOMPReductionClauseInit() 3707 const OMPParallelForDirective &S) { in EmitOMPParallelForDirective()
|
D | CodeGenFunction.h | 3399 void EmitOMPParallelForDirective(const OMPParallelForDirective &S);
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1947 void VisitOMPParallelForDirective(const OMPParallelForDirective *D); 2634 EnqueueVisitor::VisitOMPParallelForDirective(const OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
|
/external/llvm-project/clang/tools/libclang/ |
D | CIndex.cpp | 2051 void VisitOMPParallelForDirective(const OMPParallelForDirective *D); 2886 const OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
|