Searched refs:OMPForDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 694 class OMPForDirective : public OMPLoopDirective { 703 OMPForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForDirective() function 713 explicit OMPForDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPForDirective() function 728 static OMPForDirective *Create(const ASTContext &C, SourceLocation StartLoc, 741 static OMPForDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
|
D | DataRecursiveASTVisitor.h | 2315 DEF_TRAVERSE_STMT(OMPForDirective,
|
D | RecursiveASTVisitor.h | 2345 DEF_TRAVERSE_STMT(OMPForDirective,
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1663 OMPForDirective * 1664 OMPForDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 1668 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPForDirective), in Create() 1673 OMPForDirective *Dir = in Create() 1674 new (Mem) OMPForDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create() 1697 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 1701 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPForDirective), in CreateEmpty() 1706 return new (Mem) OMPForDirective(CollapsedNum, NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 449 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { in VisitOMPForDirective()
|
D | StmtPrinter.cpp | 834 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { in VisitOMPForDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 186 def OMPForDirective : DStmt<OMPLoopDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1083 void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) { in EmitOMPForDirective()
|
D | CGStmt.cpp | 184 EmitOMPForDirective(cast<OMPForDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2122 void EmitOMPForDirective(const OMPForDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2106 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective() 2716 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1955 void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1868 void VisitOMPForDirective(const OMPForDirective *D); 2419 void EnqueueVisitor::VisitOMPForDirective(const OMPForDirective *D) { in VisitOMPForDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 3035 return OMPForDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForDirective()
|
D | TreeTransform.h | 6727 TreeTransform<Derived>::TransformOMPForDirective(OMPForDirective *D) { in TransformOMPForDirective()
|