Home
last modified time | relevance | path

Searched refs:OMPParallelDirective (Results 1 – 12 of 12) sorted by relevance

/external/clang/include/clang/AST/
DStmtOpenMP.h362 class OMPParallelDirective : public OMPExecutableDirective {
368 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelDirective() function
377 explicit OMPParallelDirective(unsigned N) in OMPParallelDirective() function
389 static OMPParallelDirective *Create(ASTContext &C, SourceLocation StartLoc,
399 static OMPParallelDirective *CreateEmpty(ASTContext &C, unsigned N,
DRecursiveASTVisitor.h2395 DEF_TRAVERSE_STMT(OMPParallelDirective, {
/external/clang/lib/AST/
DStmt.cpp1149 OMPParallelDirective *OMPParallelDirective::Create( in Create()
1155 void *Mem = C.Allocate(sizeof(OMPParallelDirective) + in Create()
1157 llvm::alignOf<OMPParallelDirective>()); in Create()
1158 OMPParallelDirective *Dir = new (Mem) OMPParallelDirective(StartLoc, EndLoc, in Create()
1165 OMPParallelDirective *OMPParallelDirective::CreateEmpty(ASTContext &C, in CreateEmpty()
1168 void *Mem = C.Allocate(sizeof(OMPParallelDirective) + in CreateEmpty()
1170 llvm::alignOf<OMPParallelDirective>()); in CreateEmpty()
1171 return new (Mem) OMPParallelDirective(N); in CreateEmpty()
DStmtProfile.cpp279 StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) { in VisitOMPParallelDirective()
DStmtPrinter.cpp624 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) { in VisitOMPParallelDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td181 def OMPParallelDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/Sema/
DSemaOpenMP.cpp228 return Owned(OMPParallelDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPParallelDirective()
DTreeTransform.h6252 TreeTransform<Derived>::TransformOMPParallelDirective(OMPParallelDirective *D) { in TransformOMPParallelDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1732 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
2206 OMPParallelDirective::CreateEmpty(Context, in ReadStmtFromStream()
DASTWriterStmt.cpp1719 void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
/external/clang/tools/libclang/
DRecursiveASTVisitor.h2300 DEF_TRAVERSE_STMT(OMPParallelDirective, {
DCIndex.cpp1858 void VisitOMPParallelDirective(const OMPParallelDirective *D);
2238 void EnqueueVisitor::VisitOMPParallelDirective(const OMPParallelDirective *D) { in VisitOMPParallelDirective()