Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp511 OMPTaskwaitDirective *OMPTaskwaitDirective::Create(const ASTContext &C, in Create()
514 void *Mem = C.Allocate(sizeof(OMPTaskwaitDirective)); in Create()
515 OMPTaskwaitDirective *Dir = new (Mem) OMPTaskwaitDirective(StartLoc, EndLoc); in Create()
519 OMPTaskwaitDirective *OMPTaskwaitDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
521 void *Mem = C.Allocate(sizeof(OMPTaskwaitDirective)); in CreateEmpty()
522 return new (Mem) OMPTaskwaitDirective(); in CreateEmpty()
H A DStmtProfile.cpp837 void StmtProfiler::VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *S) { in VisitOMPTaskwaitDirective()
H A DStmtPrinter.cpp724 void StmtPrinter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *Node) { in VisitOMPTaskwaitDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h1927 class OMPTaskwaitDirective : public OMPExecutableDirective {
1934 OMPTaskwaitDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskwaitDirective() function
1940 explicit OMPTaskwaitDirective() in OMPTaskwaitDirective() function
1951 static OMPTaskwaitDirective *
1958 static OMPTaskwaitDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h2686 DEF_TRAVERSE_STMT(OMPTaskwaitDirective,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td222 def OMPTaskwaitDirective : DStmt<OMPExecutableDirective>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp2077 void ASTStmtReader::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) { in VisitOMPTaskwaitDirective()
2909 S = OMPTaskwaitDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2106 void ASTStmtWriter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) { in VisitOMPTaskwaitDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp239 EmitOMPTaskwaitDirective(cast<OMPTaskwaitDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3124 void EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S);
H A DCGStmtOpenMP.cpp3222 void CodeGenFunction::EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S) { in EmitOMPTaskwaitDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h7923 TreeTransform<Derived>::TransformOMPTaskwaitDirective(OMPTaskwaitDirective *D) { in TransformOMPTaskwaitDirective()
H A DSemaOpenMP.cpp6193 return OMPTaskwaitDirective::Create(Context, StartLoc, EndLoc); in ActOnOpenMPTaskwaitDirective()