Searched refs:OMPSectionDirective (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 254 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()
|
D | StmtProfile.cpp | 577 void StmtProfiler::VisitOMPSectionDirective(const OMPSectionDirective *S) { in VisitOMPSectionDirective()
|
D | StmtPrinter.cpp | 1015 void StmtPrinter::VisitOMPSectionDirective(OMPSectionDirective *Node) { in VisitOMPSectionDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1064 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);
|
D | RecursiveASTVisitor.h | 2478 DEF_TRAVERSE_STMT(OMPSectionDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 203 def OMPSectionDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5616 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()
|
D | TreeTransform.h | 7278 TreeTransform<Derived>::TransformOMPSectionDirective(OMPSectionDirective *D) { in TransformOMPSectionDirective()
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 200 EmitOMPSectionDirective(cast<OMPSectionDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2472 void EmitOMPSectionDirective(const OMPSectionDirective &S);
|
D | CGStmtOpenMP.cpp | 2300 void CodeGenFunction::EmitOMPSectionDirective(const OMPSectionDirective &S) { in EmitOMPSectionDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2569 void ASTStmtReader::VisitOMPSectionDirective(OMPSectionDirective *D) { in VisitOMPSectionDirective() 3293 S = OMPSectionDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2253 void ASTStmtWriter::VisitOMPSectionDirective(OMPSectionDirective *D) { in VisitOMPSectionDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1943 void VisitOMPSectionDirective(const OMPSectionDirective *D); 2616 void EnqueueVisitor::VisitOMPSectionDirective(const OMPSectionDirective *D) { in VisitOMPSectionDirective()
|