Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtOpenMP.h1288 class OMPTaskDirective : public OMPExecutableDirective {
1296 OMPTaskDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTaskDirective() function
1305 explicit OMPTaskDirective(unsigned NumClauses) in OMPTaskDirective() function
1319 static OMPTaskDirective *Create(const ASTContext &C, SourceLocation StartLoc,
1330 static OMPTaskDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
DDataRecursiveASTVisitor.h2347 DEF_TRAVERSE_STMT(OMPTaskDirective,
DRecursiveASTVisitor.h2377 DEF_TRAVERSE_STMT(OMPTaskDirective,
/external/clang/lib/AST/
DStmt.cpp1978 OMPTaskDirective *OMPTaskDirective::Create(const ASTContext &C, in Create()
1983 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPTaskDirective), in Create()
1987 OMPTaskDirective *Dir = in Create()
1988 new (Mem) OMPTaskDirective(StartLoc, EndLoc, Clauses.size()); in Create()
1994 OMPTaskDirective *OMPTaskDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1997 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPTaskDirective), in CreateEmpty()
2001 return new (Mem) OMPTaskDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp493 void StmtProfiler::VisitOMPTaskDirective(const OMPTaskDirective *S) { in VisitOMPTaskDirective()
DStmtPrinter.cpp891 void StmtPrinter::VisitOMPTaskDirective(OMPTaskDirective *Node) { in VisitOMPTaskDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td196 def OMPTaskDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1312 void CodeGenFunction::EmitOMPTaskDirective(const OMPTaskDirective &S) { in EmitOMPTaskDirective()
DCGStmt.cpp214 EmitOMPTaskDirective(cast<OMPTaskDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2132 void EmitOMPTaskDirective(const OMPTaskDirective &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2161 void ASTStmtReader::VisitOMPTaskDirective(OMPTaskDirective *D) { in VisitOMPTaskDirective()
2773 S = OMPTaskDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2017 void ASTStmtWriter::VisitOMPTaskDirective(OMPTaskDirective *D) { in VisitOMPTaskDirective()
/external/clang/tools/libclang/
DCIndex.cpp1878 void VisitOMPTaskDirective(const OMPTaskDirective *D);
2463 void EnqueueVisitor::VisitOMPTaskDirective(const OMPTaskDirective *D) { in VisitOMPTaskDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp3257 return OMPTaskDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPTaskDirective()
DTreeTransform.h6836 TreeTransform<Derived>::TransformOMPTaskDirective(OMPTaskDirective *D) { in TransformOMPTaskDirective()