Searched refs:OMPOrderedDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1535 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);
|
D | DataRecursiveASTVisitor.h | 2362 DEF_TRAVERSE_STMT(OMPOrderedDirective,
|
D | RecursiveASTVisitor.h | 2392 DEF_TRAVERSE_STMT(OMPOrderedDirective,
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 2069 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()
|
D | StmtProfile.cpp | 513 void StmtProfiler::VisitOMPOrderedDirective(const OMPOrderedDirective *S) { in VisitOMPOrderedDirective()
|
D | StmtPrinter.cpp | 916 void StmtPrinter::VisitOMPOrderedDirective(OMPOrderedDirective *Node) { in VisitOMPOrderedDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 201 def OMPOrderedDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1375 void CodeGenFunction::EmitOMPOrderedDirective(const OMPOrderedDirective &) { in EmitOMPOrderedDirective() argument
|
D | CGStmt.cpp | 229 EmitOMPOrderedDirective(cast<OMPOrderedDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2137 void EmitOMPOrderedDirective(const OMPOrderedDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2190 void ASTStmtReader::VisitOMPOrderedDirective(OMPOrderedDirective *D) { in VisitOMPOrderedDirective() 2795 S = OMPOrderedDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2069 void ASTStmtWriter::VisitOMPOrderedDirective(OMPOrderedDirective *D) { in VisitOMPOrderedDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1883 void VisitOMPOrderedDirective(const OMPOrderedDirective *D); 2484 void EnqueueVisitor::VisitOMPOrderedDirective(const OMPOrderedDirective *D) { in VisitOMPOrderedDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 3289 return OMPOrderedDirective::Create(Context, StartLoc, EndLoc, AStmt); in ActOnOpenMPOrderedDirective()
|
D | TreeTransform.h | 6891 TreeTransform<Derived>::TransformOMPOrderedDirective(OMPOrderedDirective *D) { in TransformOMPOrderedDirective()
|