Searched refs:OMPForDirective (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 124 OMPForDirective * 125 OMPForDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 130 llvm::alignTo(sizeof(OMPForDirective), llvm::alignOf<OMPClause *>()); in Create() 134 OMPForDirective *Dir = in Create() 135 new (Mem) OMPForDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create() 165 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 170 llvm::alignTo(sizeof(OMPForDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty() 174 return new (Mem) OMPForDirective(CollapsedNum, NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 565 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { in VisitOMPForDirective()
|
D | StmtPrinter.cpp | 1000 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { in VisitOMPForDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 854 class OMPForDirective : public OMPLoopDirective { 867 OMPForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForDirective() function 878 explicit OMPForDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPForDirective() function 898 static OMPForDirective *Create(const ASTContext &C, SourceLocation StartLoc, 911 static OMPForDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
|
D | RecursiveASTVisitor.h | 2469 DEF_TRAVERSE_STMT(OMPForDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 200 def OMPForDirective : DStmt<OMPLoopDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 191 EmitOMPForDirective(cast<OMPForDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2469 void EmitOMPForDirective(const OMPForDirective &S);
|
D | CGStmtOpenMP.cpp | 2109 void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) { in EmitOMPForDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2552 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective() 3274 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2234 void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1940 void VisitOMPForDirective(const OMPForDirective *D); 2604 void EnqueueVisitor::VisitOMPForDirective(const OMPForDirective *D) { in VisitOMPForDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5539 return OMPForDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForDirective()
|
D | TreeTransform.h | 7245 TreeTransform<Derived>::TransformOMPForDirective(OMPForDirective *D) { in TransformOMPForDirective()
|