Home
last modified time | relevance | path

Searched refs:OMPTaskwaitDirective (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp830 OMPTaskwaitDirective *
831 OMPTaskwaitDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
834 return createDirective<OMPTaskwaitDirective>( in Create()
839 OMPTaskwaitDirective *OMPTaskwaitDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
842 return createEmptyDirective<OMPTaskwaitDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1067 void StmtProfiler::VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *S) { in VisitOMPTaskwaitDirective()
H A DStmtPrinter.cpp865 void StmtPrinter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *Node) { in VisitOMPTaskwaitDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td249 def OMPTaskwaitDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h2688 class OMPTaskwaitDirective : public OMPExecutableDirective {
2696 OMPTaskwaitDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskwaitDirective() function
2702 explicit OMPTaskwaitDirective() in OMPTaskwaitDirective() function
2715 static OMPTaskwaitDirective *Create(const ASTContext &C,
2725 static OMPTaskwaitDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3091 DEF_TRAVERSE_STMT(OMPTaskwaitDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2533 void ASTStmtReader::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) { in VisitOMPTaskwaitDirective()
3570 S = OMPTaskwaitDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2603 void ASTStmtWriter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) { in VisitOMPTaskwaitDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp277 EmitOMPTaskwaitDirective(cast<OMPTaskwaitDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3841 void EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S);
H A DCGStmtOpenMP.cpp5355 void CodeGenFunction::EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S) { in EmitOMPTaskwaitDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9441 TreeTransform<Derived>::TransformOMPTaskwaitDirective(OMPTaskwaitDirective *D) { in TransformOMPTaskwaitDirective()
H A DSemaOpenMP.cpp11048 return OMPTaskwaitDirective::Create(getASTContext(), StartLoc, EndLoc, in ActOnOpenMPTaskwaitDirective()