Home
last modified time | relevance | path

Searched refs:OMPSectionDirective (Results 1 – 14 of 14) sorted by relevance

/external/clang/lib/AST/
DStmtOpenMP.cpp254 OMPSectionDirective *OMPSectionDirective::Create(const ASTContext &C, in Create()
260 llvm::alignTo(sizeof(OMPSectionDirective), llvm::alignOf<Stmt *>()); in Create()
262 OMPSectionDirective *Dir = new (Mem) OMPSectionDirective(StartLoc, EndLoc); in Create()
268 OMPSectionDirective *OMPSectionDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
271 llvm::alignTo(sizeof(OMPSectionDirective), llvm::alignOf<Stmt *>()); in CreateEmpty()
273 return new (Mem) OMPSectionDirective(); in CreateEmpty()
DStmtProfile.cpp577 void StmtProfiler::VisitOMPSectionDirective(const OMPSectionDirective *S) { in VisitOMPSectionDirective()
DStmtPrinter.cpp1015 void StmtPrinter::VisitOMPSectionDirective(OMPSectionDirective *Node) { in VisitOMPSectionDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h1064 class OMPSectionDirective : public OMPExecutableDirective {
1075 OMPSectionDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPSectionDirective() function
1082 explicit OMPSectionDirective() in OMPSectionDirective() function
1096 static OMPSectionDirective *Create(const ASTContext &C,
1105 static OMPSectionDirective *CreateEmpty(const ASTContext &C, EmptyShell);
DRecursiveASTVisitor.h2478 DEF_TRAVERSE_STMT(OMPSectionDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td203 def OMPSectionDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/Sema/
DSemaOpenMP.cpp5616 if (!SectionStmt || !isa<OMPSectionDirective>(SectionStmt)) { in ActOnOpenMPSectionsDirective()
5622 cast<OMPSectionDirective>(SectionStmt) in ActOnOpenMPSectionsDirective()
5647 return OMPSectionDirective::Create(Context, StartLoc, EndLoc, AStmt, in ActOnOpenMPSectionDirective()
5875 if (!SectionStmt || !isa<OMPSectionDirective>(SectionStmt)) { in ActOnOpenMPParallelSectionsDirective()
5881 cast<OMPSectionDirective>(SectionStmt) in ActOnOpenMPParallelSectionsDirective()
DTreeTransform.h7278 TreeTransform<Derived>::TransformOMPSectionDirective(OMPSectionDirective *D) { in TransformOMPSectionDirective()
/external/clang/lib/CodeGen/
DCGStmt.cpp200 EmitOMPSectionDirective(cast<OMPSectionDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2472 void EmitOMPSectionDirective(const OMPSectionDirective &S);
DCGStmtOpenMP.cpp2300 void CodeGenFunction::EmitOMPSectionDirective(const OMPSectionDirective &S) { in EmitOMPSectionDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2569 void ASTStmtReader::VisitOMPSectionDirective(OMPSectionDirective *D) { in VisitOMPSectionDirective()
3293 S = OMPSectionDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp2253 void ASTStmtWriter::VisitOMPSectionDirective(OMPSectionDirective *D) { in VisitOMPSectionDirective()
/external/clang/tools/libclang/
DCIndex.cpp1943 void VisitOMPSectionDirective(const OMPSectionDirective *D);
2616 void EnqueueVisitor::VisitOMPSectionDirective(const OMPSectionDirective *D) { in VisitOMPSectionDirective()