Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtOpenMP.cpp628 OMPTaskyieldDirective *OMPTaskyieldDirective::Create(const ASTContext &C, in Create()
631 return new (C) OMPTaskyieldDirective(StartLoc, EndLoc); in Create()
634 OMPTaskyieldDirective *OMPTaskyieldDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
636 return new (C) OMPTaskyieldDirective(); in CreateEmpty()
H A DStmtProfile.cpp964 void StmtProfiler::VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *S) { in VisitOMPTaskyieldDirective()
H A DStmtPrinter.cpp739 void StmtPrinter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *Node) { in VisitOMPTaskyieldDirective()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtOpenMP.h2363 class OMPTaskyieldDirective : public OMPExecutableDirective {
2371 OMPTaskyieldDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskyieldDirective() function
2377 explicit OMPTaskyieldDirective() in OMPTaskyieldDirective() function
2389 static OMPTaskyieldDirective *
2396 static OMPTaskyieldDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h2866 DEF_TRAVERSE_STMT(OMPTaskyieldDirective,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td238 def OMPTaskyieldDirective : StmtNode<OMPExecutableDirective>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2380 void ASTStmtReader::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
3261 S = OMPTaskyieldDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2341 void ASTStmtWriter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp248 EmitOMPTaskyieldDirective(cast<OMPTaskyieldDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3457 void EmitOMPTaskyieldDirective(const OMPTaskyieldDirective &S);
H A DCGStmtOpenMP.cpp4754 const OMPTaskyieldDirective &S) { in EmitOMPTaskyieldDirective()
H A DCGOpenMPRuntime.cpp6560 isa<OMPBarrierDirective>(S) || isa<OMPTaskyieldDirective>(S)) in getSingleCompoundChild()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2060 void VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *D);
2953 const OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h8650 OMPTaskyieldDirective *D) { in TransformOMPTaskyieldDirective()
H A DSemaOpenMP.cpp10163 return OMPTaskyieldDirective::Create(Context, StartLoc, EndLoc); in ActOnOpenMPTaskyieldDirective()