Searched refs:OMPOrderedDirective (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 631 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()
|
D | StmtProfile.cpp | 633 void StmtProfiler::VisitOMPOrderedDirective(const OMPOrderedDirective *S) { in VisitOMPOrderedDirective()
|
D | StmtPrinter.cpp | 1088 void StmtPrinter::VisitOMPOrderedDirective(OMPOrderedDirective *Node) { in VisitOMPOrderedDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1827 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,
|
D | RecursiveASTVisitor.h | 2525 DEF_TRAVERSE_STMT(OMPOrderedDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 216 def OMPOrderedDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 239 EmitOMPOrderedDirective(cast<OMPOrderedDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2485 void EmitOMPOrderedDirective(const OMPOrderedDirective &S);
|
D | CGStmtOpenMP.cpp | 2756 void CodeGenFunction::EmitOMPOrderedDirective(const OMPOrderedDirective &S) { in EmitOMPOrderedDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2649 void ASTStmtReader::VisitOMPOrderedDirective(OMPOrderedDirective *D) { in VisitOMPOrderedDirective() 3358 S = OMPOrderedDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2399 void ASTStmtWriter::VisitOMPOrderedDirective(OMPOrderedDirective *D) { in VisitOMPOrderedDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1959 void VisitOMPOrderedDirective(const OMPOrderedDirective *D); 2674 void EnqueueVisitor::VisitOMPOrderedDirective(const OMPOrderedDirective *D) { in VisitOMPOrderedDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 6023 return OMPOrderedDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPOrderedDirective()
|
D | TreeTransform.h | 7420 TreeTransform<Derived>::TransformOMPOrderedDirective(OMPOrderedDirective *D) { in TransformOMPOrderedDirective()
|