Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DStmtOpenMP.cpp584 OMPCancelDirective *
585 OMPCancelDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
588 unsigned Size = llvm::alignTo(sizeof(OMPCancelDirective) + in Create()
592 OMPCancelDirective *Dir = in Create()
593 new (Mem) OMPCancelDirective(StartLoc, EndLoc, Clauses.size()); in Create()
599 OMPCancelDirective *OMPCancelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
602 unsigned Size = llvm::alignTo(sizeof(OMPCancelDirective) + in CreateEmpty()
606 return new (Mem) OMPCancelDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp678 void StmtProfiler::VisitOMPCancelDirective(const OMPCancelDirective *S) { in VisitOMPCancelDirective()
DStmtPrinter.cpp1144 void StmtPrinter::VisitOMPCancelDirective(OMPCancelDirective *Node) { in VisitOMPCancelDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h2504 class OMPCancelDirective : public OMPExecutableDirective {
2513 OMPCancelDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPCancelDirective() function
2522 explicit OMPCancelDirective(unsigned NumClauses) in OMPCancelDirective() function
2540 static OMPCancelDirective *
2549 static OMPCancelDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2519 DEF_TRAVERSE_STMT(OMPCancelDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td227 def OMPCancelDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp254 EmitOMPCancelDirective(cast<OMPCancelDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2498 void EmitOMPCancelDirective(const OMPCancelDirective &S);
DCGStmtOpenMP.cpp3362 void CodeGenFunction::EmitOMPCancelDirective(const OMPCancelDirective &S) { in EmitOMPCancelDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2723 void ASTStmtReader::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective()
3415 S = OMPCancelDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2421 void ASTStmtWriter::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective()
/external/clang/tools/libclang/
DCIndex.cpp1957 void VisitOMPCancelDirective(const OMPCancelDirective *D);
2720 void EnqueueVisitor::VisitOMPCancelDirective(const OMPCancelDirective *D) { in VisitOMPCancelDirective()
/external/clang/lib/Sema/
DTreeTransform.h7213 CancelRegion = cast<OMPCancelDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective()
7541 TreeTransform<Derived>::TransformOMPCancelDirective(OMPCancelDirective *D) { in TransformOMPCancelDirective()
DSemaOpenMP.cpp6957 return OMPCancelDirective::Create(Context, StartLoc, EndLoc, Clauses, in ActOnOpenMPCancelDirective()