Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DStmtOpenMP.cpp736 OMPTaskyieldDirective *OMPTaskyieldDirective::Create(const ASTContext &C, in Create()
739 return new (C) OMPTaskyieldDirective(StartLoc, EndLoc); in Create()
742 OMPTaskyieldDirective *OMPTaskyieldDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
744 return new (C) OMPTaskyieldDirective(); in CreateEmpty()
H A DStmtProfile.cpp1020 void StmtProfiler::VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *S) { in VisitOMPTaskyieldDirective()
H A DStmtPrinter.cpp832 void StmtPrinter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *Node) { in VisitOMPTaskyieldDirective()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DStmtNodes.td243 def OMPTaskyieldDirective : StmtNode<OMPExecutableDirective>;
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmtOpenMP.h2527 class OMPTaskyieldDirective : public OMPExecutableDirective {
2535 OMPTaskyieldDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskyieldDirective() function
2541 explicit OMPTaskyieldDirective() in OMPTaskyieldDirective() function
2553 static OMPTaskyieldDirective *
2560 static OMPTaskyieldDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h3004 DEF_TRAVERSE_STMT(OMPTaskyieldDirective,
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp2438 void ASTStmtReader::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
3397 S = OMPTaskyieldDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2410 void ASTStmtWriter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmt.cpp256 EmitOMPTaskyieldDirective(cast<OMPTaskyieldDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3523 void EmitOMPTaskyieldDirective(const OMPTaskyieldDirective &S);
H A DCGStmtOpenMP.cpp5246 const OMPTaskyieldDirective &S) { in EmitOMPTaskyieldDirective()
H A DCGOpenMPRuntime.cpp6148 isa<OMPBarrierDirective>(S) || isa<OMPTaskyieldDirective>(S)) in getSingleCompoundChild()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp2165 void VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *D);
3121 const OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DTreeTransform.h8920 OMPTaskyieldDirective *D) { in TransformOMPTaskyieldDirective()
H A DSemaOpenMP.cpp11093 return OMPTaskyieldDirective::Create(Context, StartLoc, EndLoc); in ActOnOpenMPTaskyieldDirective()