Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp688 OMPTaskwaitDirective *OMPTaskwaitDirective::Create(const ASTContext &C, in Create()
691 return new (C) OMPTaskwaitDirective(StartLoc, EndLoc); in Create()
694 OMPTaskwaitDirective *OMPTaskwaitDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
696 return new (C) OMPTaskwaitDirective(); in CreateEmpty()
H A DStmtProfile.cpp983 void StmtProfiler::VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *S) { in VisitOMPTaskwaitDirective()
H A DStmtPrinter.cpp755 void StmtPrinter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *Node) { in VisitOMPTaskwaitDirective()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td242 def OMPTaskwaitDirective : StmtNode<OMPExecutableDirective>;
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h2488 class OMPTaskwaitDirective : public OMPExecutableDirective {
2496 OMPTaskwaitDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskwaitDirective() function
2502 explicit OMPTaskwaitDirective() in OMPTaskwaitDirective() function
2514 static OMPTaskwaitDirective *
2521 static OMPTaskwaitDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h2901 DEF_TRAVERSE_STMT(OMPTaskwaitDirective,
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2404 void ASTStmtReader::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) { in VisitOMPTaskwaitDirective()
3294 S = OMPTaskwaitDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2369 void ASTStmtWriter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) { in VisitOMPTaskwaitDirective()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp257 EmitOMPTaskwaitDirective(cast<OMPTaskwaitDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3460 void EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S);
H A DCGStmtOpenMP.cpp4788 void CodeGenFunction::EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S) { in EmitOMPTaskwaitDirective()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8706 TreeTransform<Derived>::TransformOMPTaskwaitDirective(OMPTaskwaitDirective *D) { in TransformOMPTaskwaitDirective()
H A DSemaOpenMP.cpp10208 return OMPTaskwaitDirective::Create(Context, StartLoc, EndLoc); in ActOnOpenMPTaskwaitDirective()