/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 124 OMPForDirective * 125 OMPForDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 130 llvm::alignTo(sizeof(OMPForDirective), llvm::alignOf<OMPClause *>()); in Create() 134 OMPForDirective *Dir = in Create() 135 new (Mem) OMPForDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create() 165 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 170 llvm::alignTo(sizeof(OMPForDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty() 174 return new (Mem) OMPForDirective(CollapsedNum, NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 565 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { in VisitOMPForDirective()
|
D | StmtPrinter.cpp | 1000 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { in VisitOMPForDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 854 class OMPForDirective : public OMPLoopDirective { 867 OMPForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForDirective() function 878 explicit OMPForDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPForDirective() function 898 static OMPForDirective *Create(const ASTContext &C, SourceLocation StartLoc, 911 static OMPForDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
|
D | RecursiveASTVisitor.h | 2469 DEF_TRAVERSE_STMT(OMPForDirective,
|
/external/llvm-project/clang/lib/AST/ |
D | StmtOpenMP.cpp | 249 OMPForDirective *OMPForDirective::Create( in Create() 253 auto *Dir = createDirective<OMPForDirective>( in Create() 285 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 289 return createEmptyDirective<OMPForDirective>( in CreateEmpty()
|
D | StmtProfile.cpp | 862 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { in VisitOMPForDirective()
|
D | StmtPrinter.cpp | 663 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { in VisitOMPForDirective()
|
/external/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1239 class OMPForDirective : public OMPLoopDirective { 1251 OMPForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForDirective() function 1260 explicit OMPForDirective(unsigned CollapsedNum) in OMPForDirective() function 1287 static OMPForDirective *Create(const ASTContext &C, SourceLocation StartLoc, 1300 static OMPForDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses, 1309 return const_cast<OMPForDirective *>(this)->getTaskReductionRefExpr(); in getTaskReductionRefExpr()
|
D | RecursiveASTVisitor.h | 2788 DEF_TRAVERSE_STMT(OMPForDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 200 def OMPForDirective : DStmt<OMPLoopDirective>;
|
/external/llvm-project/clang/include/clang/Basic/ |
D | StmtNodes.td | 223 def OMPForDirective : StmtNode<OMPLoopDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 191 EmitOMPForDirective(cast<OMPForDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2469 void EmitOMPForDirective(const OMPForDirective &S);
|
D | CGStmtOpenMP.cpp | 2109 void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) { in EmitOMPForDirective()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2299 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective() 3151 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2197 void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2552 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective() 3274 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2234 void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmt.cpp | 204 EmitOMPForDirective(cast<OMPForDirective>(*S)); in EmitStmt()
|
D | CGStmtOpenMP.cpp | 1290 TaskRedRef = cast<OMPForDirective>(D).getTaskReductionRefExpr(); in EmitOMPReductionClauseInit() 3352 void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) { in EmitOMPForDirective()
|
D | CodeGenFunction.h | 3392 void EmitOMPForDirective(const OMPForDirective &S);
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1940 void VisitOMPForDirective(const OMPForDirective *D); 2604 void EnqueueVisitor::VisitOMPForDirective(const OMPForDirective *D) { in VisitOMPForDirective()
|
/external/llvm-project/clang/tools/libclang/ |
D | CIndex.cpp | 2044 void VisitOMPForDirective(const OMPForDirective *D); 2856 void EnqueueVisitor::VisitOMPForDirective(const OMPForDirective *D) { in VisitOMPForDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5539 return OMPForDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForDirective()
|