/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 57 OMPParallelDirective *OMPParallelDirective::Create( in Create() 61 llvm::alignTo(sizeof(OMPParallelDirective), llvm::alignOf<OMPClause *>()); in Create() 64 OMPParallelDirective *Dir = in Create() 65 new (Mem) OMPParallelDirective(StartLoc, EndLoc, Clauses.size()); in Create() 72 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 76 llvm::alignTo(sizeof(OMPParallelDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty() 79 return new (Mem) OMPParallelDirective(NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 557 void StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) { in VisitOMPParallelDirective()
|
D | StmtPrinter.cpp | 990 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) { in VisitOMPParallelDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 231 class OMPParallelDirective : public OMPExecutableDirective { 241 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelDirective() function 251 explicit OMPParallelDirective(unsigned NumClauses) in OMPParallelDirective() function 270 static OMPParallelDirective * 279 static OMPParallelDirective *CreateEmpty(const ASTContext &C,
|
D | RecursiveASTVisitor.h | 2463 DEF_TRAVERSE_STMT(OMPParallelDirective,
|
/external/llvm-project/clang/lib/AST/ |
D | StmtOpenMP.cpp | 194 OMPParallelDirective *OMPParallelDirective::Create( in Create() 198 auto *Dir = createDirective<OMPParallelDirective>( in Create() 205 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 208 return createEmptyDirective<OMPParallelDirective>(C, NumClauses, in CreateEmpty()
|
D | StmtProfile.cpp | 854 void StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) { in VisitOMPParallelDirective()
|
D | StmtPrinter.cpp | 653 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) { in VisitOMPParallelDirective()
|
/external/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 374 class OMPParallelDirective : public OMPExecutableDirective { 385 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPParallelDirective() function 391 explicit OMPParallelDirective() in OMPParallelDirective() function 414 static OMPParallelDirective * 424 static OMPParallelDirective *CreateEmpty(const ASTContext &C, 432 return const_cast<OMPParallelDirective *>(this)->getTaskReductionRefExpr(); in getTaskReductionRefExpr()
|
D | RecursiveASTVisitor.h | 2782 DEF_TRAVERSE_STMT(OMPParallelDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 198 def OMPParallelDirective : DStmt<OMPExecutableDirective>;
|
/external/llvm-project/clang/include/clang/Basic/ |
D | StmtNodes.td | 221 def OMPParallelDirective : StmtNode<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 185 EmitOMPParallelDirective(cast<OMPParallelDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2467 void EmitOMPParallelDirective(const OMPParallelDirective &S);
|
D | CGStmtOpenMP.cpp | 1226 void CodeGenFunction::EmitOMPParallelDirective(const OMPParallelDirective &S) { in EmitOMPParallelDirective()
|
D | CGOpenMPRuntime.cpp | 849 if (auto *OPD = dyn_cast<OMPParallelDirective>(&D)) in emitParallelOrTeamsOutlinedFunction()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2289 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective() 3135 OMPParallelDirective::CreateEmpty(Context, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2185 void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2540 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective() 3258 OMPParallelDirective::CreateEmpty(Context, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2221 void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmt.cpp | 198 EmitOMPParallelDirective(cast<OMPParallelDirective>(*S)); in EmitStmt()
|
D | CGStmtOpenMP.cpp | 1287 TaskRedRef = cast<OMPParallelDirective>(D).getTaskReductionRefExpr(); in EmitOMPReductionClauseInit() 1665 void CodeGenFunction::EmitOMPParallelDirective(const OMPParallelDirective &S) { in EmitOMPParallelDirective()
|
D | CodeGenFunction.h | 3390 void EmitOMPParallelDirective(const OMPParallelDirective &S);
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1938 void VisitOMPParallelDirective(const OMPParallelDirective *D); 2596 void EnqueueVisitor::VisitOMPParallelDirective(const OMPParallelDirective *D) { in VisitOMPParallelDirective()
|
/external/llvm-project/clang/tools/libclang/ |
D | CIndex.cpp | 2042 void VisitOMPParallelDirective(const OMPParallelDirective *D); 2848 void EnqueueVisitor::VisitOMPParallelDirective(const OMPParallelDirective *D) { in VisitOMPParallelDirective()
|