Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtOpenMP.h224 class OMPParallelDirective : public OMPExecutableDirective {
230 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelDirective() function
239 explicit OMPParallelDirective(unsigned NumClauses) in OMPParallelDirective() function
253 static OMPParallelDirective *
262 static OMPParallelDirective *CreateEmpty(const ASTContext &C,
DDataRecursiveASTVisitor.h2309 DEF_TRAVERSE_STMT(OMPParallelDirective,
DRecursiveASTVisitor.h2339 DEF_TRAVERSE_STMT(OMPParallelDirective,
/external/clang/lib/AST/
DStmt.cpp1597 OMPParallelDirective *OMPParallelDirective::Create( in Create()
1603 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPParallelDirective), in Create()
1607 OMPParallelDirective *Dir = new (Mem) OMPParallelDirective(StartLoc, EndLoc, in Create()
1614 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1617 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPParallelDirective), in CreateEmpty()
1621 return new (Mem) OMPParallelDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp441 void StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) { in VisitOMPParallelDirective()
DStmtPrinter.cpp824 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) { in VisitOMPParallelDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td184 def OMPParallelDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp519 void CodeGenFunction::EmitOMPParallelDirective(const OMPParallelDirective &S) { in EmitOMPParallelDirective()
DCGStmt.cpp178 EmitOMPParallelDirective(cast<OMPParallelDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2120 void EmitOMPParallelDirective(const OMPParallelDirective &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2095 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
2700 OMPParallelDirective::CreateEmpty(Context, in ReadStmtFromStream()
DASTWriterStmt.cpp1943 void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
/external/clang/tools/libclang/
DCIndex.cpp1866 void VisitOMPParallelDirective(const OMPParallelDirective *D);
2411 void EnqueueVisitor::VisitOMPParallelDirective(const OMPParallelDirective *D) { in VisitOMPParallelDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp1908 return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses, in ActOnOpenMPParallelDirective()
DTreeTransform.h6705 TreeTransform<Derived>::TransformOMPParallelDirective(OMPParallelDirective *D) { in TransformOMPParallelDirective()