Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtOpenMP.h1344 class OMPTaskyieldDirective : public OMPExecutableDirective {
1351 OMPTaskyieldDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskyieldDirective() function
1357 explicit OMPTaskyieldDirective() in OMPTaskyieldDirective() function
1368 static OMPTaskyieldDirective *
1375 static OMPTaskyieldDirective *CreateEmpty(const ASTContext &C, EmptyShell);
DDataRecursiveASTVisitor.h2350 DEF_TRAVERSE_STMT(OMPTaskyieldDirective,
DRecursiveASTVisitor.h2380 DEF_TRAVERSE_STMT(OMPTaskyieldDirective,
/external/clang/lib/AST/
DStmt.cpp2004 OMPTaskyieldDirective *OMPTaskyieldDirective::Create(const ASTContext &C, in Create()
2007 void *Mem = C.Allocate(sizeof(OMPTaskyieldDirective)); in Create()
2008 OMPTaskyieldDirective *Dir = in Create()
2009 new (Mem) OMPTaskyieldDirective(StartLoc, EndLoc); in Create()
2013 OMPTaskyieldDirective *OMPTaskyieldDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
2015 void *Mem = C.Allocate(sizeof(OMPTaskyieldDirective)); in CreateEmpty()
2016 return new (Mem) OMPTaskyieldDirective(); in CreateEmpty()
DStmtProfile.cpp497 void StmtProfiler::VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *S) { in VisitOMPTaskyieldDirective()
DStmtPrinter.cpp896 void StmtPrinter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *Node) { in VisitOMPTaskyieldDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td197 def OMPTaskyieldDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1352 const OMPTaskyieldDirective &S) { in EmitOMPTaskyieldDirective()
DCGStmt.cpp217 EmitOMPTaskyieldDirective(cast<OMPTaskyieldDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2133 void EmitOMPTaskyieldDirective(const OMPTaskyieldDirective &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2168 void ASTStmtReader::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
2778 S = OMPTaskyieldDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp2044 void ASTStmtWriter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
/external/clang/tools/libclang/
DCIndex.cpp1879 void VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *D);
2468 EnqueueVisitor::VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp3262 return OMPTaskyieldDirective::Create(Context, StartLoc, EndLoc); in ActOnOpenMPTaskyieldDirective()
DTreeTransform.h6847 OMPTaskyieldDirective *D) { in TransformOMPTaskyieldDirective()