Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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.cpp1005 void StmtProfiler::VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *S) { in VisitOMPTaskyieldDirective()
H A DStmtPrinter.cpp831 void StmtPrinter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *Node) { in VisitOMPTaskyieldDirective()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td242 def OMPTaskyieldDirective : StmtNode<OMPExecutableDirective>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h2526 class OMPTaskyieldDirective : public OMPExecutableDirective {
2534 OMPTaskyieldDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskyieldDirective() function
2540 explicit OMPTaskyieldDirective() in OMPTaskyieldDirective() function
2552 static OMPTaskyieldDirective *
2559 static OMPTaskyieldDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h3006 DEF_TRAVERSE_STMT(OMPTaskyieldDirective,
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2398 void ASTStmtReader::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
3350 S = OMPTaskyieldDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2376 void ASTStmtWriter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp255 EmitOMPTaskyieldDirective(cast<OMPTaskyieldDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3521 void EmitOMPTaskyieldDirective(const OMPTaskyieldDirective &S);
H A DCGStmtOpenMP.cpp5193 const OMPTaskyieldDirective &S) { in EmitOMPTaskyieldDirective()
H A DCGOpenMPRuntime.cpp6526 isa<OMPBarrierDirective>(S) || isa<OMPTaskyieldDirective>(S)) in getSingleCompoundChild()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2158 void VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *D);
3099 const OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h8810 OMPTaskyieldDirective *D) { in TransformOMPTaskyieldDirective()
H A DSemaOpenMP.cpp11010 return OMPTaskyieldDirective::Create(Context, StartLoc, EndLoc); in ActOnOpenMPTaskyieldDirective()