/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 229 OMPSectionsDirective *OMPSectionsDirective::Create( in Create() 233 llvm::alignTo(sizeof(OMPSectionsDirective), llvm::alignOf<OMPClause *>()); in Create() 236 OMPSectionsDirective *Dir = in Create() 237 new (Mem) OMPSectionsDirective(StartLoc, EndLoc, Clauses.size()); in Create() 244 OMPSectionsDirective *OMPSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 248 llvm::alignTo(sizeof(OMPSectionsDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty() 251 return new (Mem) OMPSectionsDirective(NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 573 void StmtProfiler::VisitOMPSectionsDirective(const OMPSectionsDirective *S) { in VisitOMPSectionsDirective()
|
D | StmtPrinter.cpp | 1010 void StmtPrinter::VisitOMPSectionsDirective(OMPSectionsDirective *Node) { in VisitOMPSectionsDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 996 class OMPSectionsDirective : public OMPExecutableDirective { 1008 OMPSectionsDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSectionsDirective() function 1018 explicit OMPSectionsDirective(unsigned NumClauses) in OMPSectionsDirective() function 1037 static OMPSectionsDirective * 1047 static OMPSectionsDirective *CreateEmpty(const ASTContext &C,
|
D | RecursiveASTVisitor.h | 2475 DEF_TRAVERSE_STMT(OMPSectionsDirective,
|
/external/llvm-project/clang/lib/AST/ |
D | StmtOpenMP.cpp | 338 OMPSectionsDirective *OMPSectionsDirective::Create( in Create() 342 auto *Dir = createDirective<OMPSectionsDirective>(C, Clauses, AssociatedStmt, in Create() 350 OMPSectionsDirective *OMPSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 353 return createEmptyDirective<OMPSectionsDirective>(C, NumClauses, in CreateEmpty()
|
D | StmtProfile.cpp | 870 void StmtProfiler::VisitOMPSectionsDirective(const OMPSectionsDirective *S) { in VisitOMPSectionsDirective()
|
D | StmtPrinter.cpp | 673 void StmtPrinter::VisitOMPSectionsDirective(OMPSectionsDirective *Node) { in VisitOMPSectionsDirective()
|
/external/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1392 class OMPSectionsDirective : public OMPExecutableDirective { 1404 OMPSectionsDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPSectionsDirective() function 1410 explicit OMPSectionsDirective() in OMPSectionsDirective() function 1433 static OMPSectionsDirective * 1444 static OMPSectionsDirective *CreateEmpty(const ASTContext &C, 1452 return const_cast<OMPSectionsDirective *>(this)->getTaskReductionRefExpr(); in getTaskReductionRefExpr()
|
D | RecursiveASTVisitor.h | 2794 DEF_TRAVERSE_STMT(OMPSectionsDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 202 def OMPSectionsDirective : DStmt<OMPExecutableDirective>;
|
/external/llvm-project/clang/include/clang/Basic/ |
D | StmtNodes.td | 225 def OMPSectionsDirective : StmtNode<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 197 EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S)); in EmitStmt()
|
D | CGStmtOpenMP.cpp | 2271 if (auto *OSD = dyn_cast<OMPSectionsDirective>(&S)) in EmitSections() 2288 void CodeGenFunction::EmitOMPSectionsDirective(const OMPSectionsDirective &S) { in EmitOMPSectionsDirective()
|
D | CodeGenFunction.h | 2471 void EmitOMPSectionsDirective(const OMPSectionsDirective &S);
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2308 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective() 3165 S = OMPSectionsDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2208 void ASTStmtWriter::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2561 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective() 3288 S = OMPSectionsDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2245 void ASTStmtWriter::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmt.cpp | 210 EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S)); in EmitStmt()
|
D | CGStmtOpenMP.cpp | 1293 TaskRedRef = cast<OMPSectionsDirective>(D).getTaskReductionRefExpr(); in EmitOMPReductionClauseInit() 3530 if (auto *OSD = dyn_cast<OMPSectionsDirective>(&S)) in EmitSections() 3548 void CodeGenFunction::EmitOMPSectionsDirective(const OMPSectionsDirective &S) { in EmitOMPSectionsDirective()
|
D | CodeGenFunction.h | 3394 void EmitOMPSectionsDirective(const OMPSectionsDirective &S);
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1942 void VisitOMPSectionsDirective(const OMPSectionsDirective *D); 2612 void EnqueueVisitor::VisitOMPSectionsDirective(const OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
|
/external/llvm-project/clang/tools/libclang/ |
D | CIndex.cpp | 2046 void VisitOMPSectionsDirective(const OMPSectionsDirective *D); 2864 void EnqueueVisitor::VisitOMPSectionsDirective(const OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5632 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPSectionsDirective()
|