Home
last modified time | relevance | path

Searched refs:OMPForDirective (Results 1 – 14 of 14) sorted by relevance

/external/clang/lib/AST/
DStmtOpenMP.cpp124 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()
DStmtProfile.cpp565 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { in VisitOMPForDirective()
DStmtPrinter.cpp1000 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { in VisitOMPForDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h854 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,
DRecursiveASTVisitor.h2469 DEF_TRAVERSE_STMT(OMPForDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td200 def OMPForDirective : DStmt<OMPLoopDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp191 EmitOMPForDirective(cast<OMPForDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2469 void EmitOMPForDirective(const OMPForDirective &S);
DCGStmtOpenMP.cpp2109 void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) { in EmitOMPForDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2552 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
3274 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
DASTWriterStmt.cpp2234 void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
/external/clang/tools/libclang/
DCIndex.cpp1940 void VisitOMPForDirective(const OMPForDirective *D);
2604 void EnqueueVisitor::VisitOMPForDirective(const OMPForDirective *D) { in VisitOMPForDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp5539 return OMPForDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForDirective()
DTreeTransform.h7245 TreeTransform<Derived>::TransformOMPForDirective(OMPForDirective *D) { in TransformOMPForDirective()