Home
last modified time | relevance | path

Searched refs:OMPCancellationPointDirective (Results 1 – 14 of 14) sorted by relevance

/external/clang/lib/AST/
DStmtOpenMP.cpp564 OMPCancellationPointDirective *OMPCancellationPointDirective::Create( in Create()
567 unsigned Size = llvm::alignTo(sizeof(OMPCancellationPointDirective), in Create()
570 OMPCancellationPointDirective *Dir = in Create()
571 new (Mem) OMPCancellationPointDirective(StartLoc, EndLoc); in Create()
576 OMPCancellationPointDirective *
577 OMPCancellationPointDirective::CreateEmpty(const ASTContext &C, EmptyShell) { in CreateEmpty()
578 unsigned Size = llvm::alignTo(sizeof(OMPCancellationPointDirective), in CreateEmpty()
581 return new (Mem) OMPCancellationPointDirective(); in CreateEmpty()
DStmtProfile.cpp674 const OMPCancellationPointDirective *S) { in VisitOMPCancellationPointDirective()
DStmtPrinter.cpp1138 OMPCancellationPointDirective *Node) { in VisitOMPCancellationPointDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h2446 class OMPCancellationPointDirective : public OMPExecutableDirective {
2454 OMPCancellationPointDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPCancellationPointDirective() function
2461 explicit OMPCancellationPointDirective() in OMPCancellationPointDirective() function
2478 static OMPCancellationPointDirective *
2486 static OMPCancellationPointDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2516 DEF_TRAVERSE_STMT(OMPCancellationPointDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td226 def OMPCancellationPointDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp251 EmitOMPCancellationPointDirective(cast<OMPCancellationPointDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2497 EmitOMPCancellationPointDirective(const OMPCancellationPointDirective &S);
DCGStmtOpenMP.cpp3357 const OMPCancellationPointDirective &S) { in EmitOMPCancellationPointDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2717 OMPCancellationPointDirective *D) { in VisitOMPCancellationPointDirective()
3411 S = OMPCancellationPointDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp2414 OMPCancellationPointDirective *D) { in VisitOMPCancellationPointDirective()
/external/clang/tools/libclang/
DCIndex.cpp1956 VisitOMPCancellationPointDirective(const OMPCancellationPointDirective *D);
2716 const OMPCancellationPointDirective *D) { in VisitOMPCancellationPointDirective()
/external/clang/lib/Sema/
DTreeTransform.h7211 CancelRegion = cast<OMPCancellationPointDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective()
7530 OMPCancellationPointDirective *D) { in TransformOMPCancellationPointDirective()
DSemaOpenMP.cpp6934 return OMPCancellationPointDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPCancellationPointDirective()