Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtOpenMP.h1535 class OMPOrderedDirective : public OMPExecutableDirective {
1542 OMPOrderedDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPOrderedDirective() function
1548 explicit OMPOrderedDirective() in OMPOrderedDirective() function
1560 static OMPOrderedDirective *Create(const ASTContext &C,
1569 static OMPOrderedDirective *CreateEmpty(const ASTContext &C, EmptyShell);
DDataRecursiveASTVisitor.h2362 DEF_TRAVERSE_STMT(OMPOrderedDirective,
DRecursiveASTVisitor.h2392 DEF_TRAVERSE_STMT(OMPOrderedDirective,
/external/clang/lib/AST/
DStmt.cpp2069 OMPOrderedDirective *OMPOrderedDirective::Create(const ASTContext &C, in Create()
2073 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPOrderedDirective), in Create()
2076 OMPOrderedDirective *Dir = new (Mem) OMPOrderedDirective(StartLoc, EndLoc); in Create()
2081 OMPOrderedDirective *OMPOrderedDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
2083 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPOrderedDirective), in CreateEmpty()
2086 return new (Mem) OMPOrderedDirective(); in CreateEmpty()
DStmtProfile.cpp513 void StmtProfiler::VisitOMPOrderedDirective(const OMPOrderedDirective *S) { in VisitOMPOrderedDirective()
DStmtPrinter.cpp916 void StmtPrinter::VisitOMPOrderedDirective(OMPOrderedDirective *Node) { in VisitOMPOrderedDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td201 def OMPOrderedDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1375 void CodeGenFunction::EmitOMPOrderedDirective(const OMPOrderedDirective &) { in EmitOMPOrderedDirective() argument
DCGStmt.cpp229 EmitOMPOrderedDirective(cast<OMPOrderedDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2137 void EmitOMPOrderedDirective(const OMPOrderedDirective &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2190 void ASTStmtReader::VisitOMPOrderedDirective(OMPOrderedDirective *D) { in VisitOMPOrderedDirective()
2795 S = OMPOrderedDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp2069 void ASTStmtWriter::VisitOMPOrderedDirective(OMPOrderedDirective *D) { in VisitOMPOrderedDirective()
/external/clang/tools/libclang/
DCIndex.cpp1883 void VisitOMPOrderedDirective(const OMPOrderedDirective *D);
2484 void EnqueueVisitor::VisitOMPOrderedDirective(const OMPOrderedDirective *D) { in VisitOMPOrderedDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp3289 return OMPOrderedDirective::Create(Context, StartLoc, EndLoc, AStmt); in ActOnOpenMPOrderedDirective()
DTreeTransform.h6891 TreeTransform<Derived>::TransformOMPOrderedDirective(OMPOrderedDirective *D) { in TransformOMPOrderedDirective()