Searched refs:OMPTaskwaitDirective (Results 1 - 12 of 12) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp656 OMPTaskwaitDirective *OMPTaskwaitDirective::Create(const ASTContext &C,
659 void *Mem = C.Allocate(sizeof(OMPTaskwaitDirective));
660 OMPTaskwaitDirective *Dir = new (Mem) OMPTaskwaitDirective(StartLoc, EndLoc);
664 OMPTaskwaitDirective *OMPTaskwaitDirective::CreateEmpty(const ASTContext &C,
666 void *Mem = C.Allocate(sizeof(OMPTaskwaitDirective));
667 return new (Mem) OMPTaskwaitDirective();
H A DStmtProfile.cpp864 void StmtProfiler::VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *S) {
H A DStmtPrinter.cpp744 void StmtPrinter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *Node) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h2147 class OMPTaskwaitDirective : public OMPExecutableDirective { class in namespace:clang
2154 OMPTaskwaitDirective(SourceLocation StartLoc, SourceLocation EndLoc) function in class:clang::OMPTaskwaitDirective
2161 explicit OMPTaskwaitDirective() function in class:clang::OMPTaskwaitDirective
2173 static OMPTaskwaitDirective *
2180 static OMPTaskwaitDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h2830 DEF_TRAVERSE_STMT(OMPTaskwaitDirective,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2328 void ASTStmtReader::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) {
3163 S = OMPTaskwaitDirective::CreateEmpty(Context, Empty);
H A DASTWriterStmt.cpp2298 void ASTStmtWriter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp241 EmitOMPTaskwaitDirective(cast<OMPTaskwaitDirective>(*S));
H A DCodeGenFunction.h3149 void EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S);
H A DCGStmtOpenMP.cpp3552 void CodeGenFunction::EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8222 TreeTransform<Derived>::TransformOMPTaskwaitDirective(OMPTaskwaitDirective *D) {
H A DSemaOpenMP.cpp8470 return OMPTaskwaitDirective::Create(Context, StartLoc, EndLoc);

Completed in 254 milliseconds