Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtOpenMP.h694 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,
DDataRecursiveASTVisitor.h2315 DEF_TRAVERSE_STMT(OMPForDirective,
DRecursiveASTVisitor.h2345 DEF_TRAVERSE_STMT(OMPForDirective,
/external/clang/lib/AST/
DStmt.cpp1663 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()
DStmtProfile.cpp449 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { in VisitOMPForDirective()
DStmtPrinter.cpp834 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { in VisitOMPForDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td186 def OMPForDirective : DStmt<OMPLoopDirective>;
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1083 void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) { in EmitOMPForDirective()
DCGStmt.cpp184 EmitOMPForDirective(cast<OMPForDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2122 void EmitOMPForDirective(const OMPForDirective &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2106 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
2716 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
DASTWriterStmt.cpp1955 void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
/external/clang/tools/libclang/
DCIndex.cpp1868 void VisitOMPForDirective(const OMPForDirective *D);
2419 void EnqueueVisitor::VisitOMPForDirective(const OMPForDirective *D) { in VisitOMPForDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp3035 return OMPForDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForDirective()
DTreeTransform.h6727 TreeTransform<Derived>::TransformOMPForDirective(OMPForDirective *D) { in TransformOMPForDirective()