Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DStmtOpenMP.cpp631 OMPOrderedDirective *OMPOrderedDirective::Create(const ASTContext &C, in Create()
637 llvm::alignTo(sizeof(OMPOrderedDirective), llvm::alignOf<OMPClause *>()); in Create()
640 OMPOrderedDirective *Dir = in Create()
641 new (Mem) OMPOrderedDirective(StartLoc, EndLoc, Clauses.size()); in Create()
647 OMPOrderedDirective *OMPOrderedDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
651 llvm::alignTo(sizeof(OMPOrderedDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty()
654 return new (Mem) OMPOrderedDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp633 void StmtProfiler::VisitOMPOrderedDirective(const OMPOrderedDirective *S) { in VisitOMPOrderedDirective()
DStmtPrinter.cpp1088 void StmtPrinter::VisitOMPOrderedDirective(OMPOrderedDirective *Node) { in VisitOMPOrderedDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h1827 class OMPOrderedDirective : public OMPExecutableDirective {
1835 OMPOrderedDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPOrderedDirective() function
1844 explicit OMPOrderedDirective(unsigned NumClauses) in OMPOrderedDirective() function
1858 static OMPOrderedDirective *
1867 static OMPOrderedDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2525 DEF_TRAVERSE_STMT(OMPOrderedDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td216 def OMPOrderedDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp239 EmitOMPOrderedDirective(cast<OMPOrderedDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2485 void EmitOMPOrderedDirective(const OMPOrderedDirective &S);
DCGStmtOpenMP.cpp2756 void CodeGenFunction::EmitOMPOrderedDirective(const OMPOrderedDirective &S) { in EmitOMPOrderedDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2649 void ASTStmtReader::VisitOMPOrderedDirective(OMPOrderedDirective *D) { in VisitOMPOrderedDirective()
3358 S = OMPOrderedDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2399 void ASTStmtWriter::VisitOMPOrderedDirective(OMPOrderedDirective *D) { in VisitOMPOrderedDirective()
/external/clang/tools/libclang/
DCIndex.cpp1959 void VisitOMPOrderedDirective(const OMPOrderedDirective *D);
2674 void EnqueueVisitor::VisitOMPOrderedDirective(const OMPOrderedDirective *D) { in VisitOMPOrderedDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp6023 return OMPOrderedDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPOrderedDirective()
DTreeTransform.h7420 TreeTransform<Derived>::TransformOMPOrderedDirective(OMPOrderedDirective *D) { in TransformOMPOrderedDirective()