Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DOpenMPClause.cpp521 OMPDependClause *OMPDependClause::Create( in Create()
526 OMPDependClause *Clause = in Create()
527 new (Mem) OMPDependClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
536 OMPDependClause *OMPDependClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty()
538 return new (Mem) OMPDependClause(N); in CreateEmpty()
541 void OMPDependClause::setCounterValue(Expr *V) { in setCounterValue()
547 const Expr *OMPDependClause::getCounterValue() const { in getCounterValue()
554 Expr *OMPDependClause::getCounterValue() { in getCounterValue()
DStmtProfile.cpp491 void OMPClauseProfiler::VisitOMPDependClause(const OMPDependClause *C) { in VisitOMPDependClause()
DStmtPrinter.cpp887 void OMPClausePrinter::VisitOMPDependClause(OMPDependClause *Node) { in VisitOMPDependClause()
/external/clang/include/clang/AST/
DOpenMPClause.h2578 class OMPDependClause final
2579 : public OMPVarListClause<OMPDependClause>,
2580 private llvm::TrailingObjects<OMPDependClause, Expr *> {
2597 OMPDependClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPDependClause() function
2599 : OMPVarListClause<OMPDependClause>(OMPC_depend, StartLoc, LParenLoc, in OMPDependClause()
2607 explicit OMPDependClause(unsigned N) in OMPDependClause() function
2608 : OMPVarListClause<OMPDependClause>(OMPC_depend, SourceLocation(), in OMPDependClause()
2632 static OMPDependClause *
2641 static OMPDependClause *CreateEmpty(const ASTContext &C, unsigned N);
DRecursiveASTVisitor.h2874 bool RecursiveASTVisitor<Derived>::VisitOMPDependClause(OMPDependClause *C) {
/external/clang/lib/CodeGen/
DCGOpenMPRuntime.h40 class OMPDependClause; variable
1039 const OMPDependClause *C);
DCGStmtOpenMP.cpp2487 for (const auto *C : S.getClausesOfKind<OMPDependClause>()) in EmitOMPTaskBasedDirective()
2758 for (const auto *DC : S.getClausesOfKind<OMPDependClause>()) in EmitOMPOrderedDirective()
DCGOpenMPRuntime.cpp6573 const OMPDependClause *C) { in emitDoacrossOrdered()
/external/clang/include/clang/Basic/
DOpenMPKinds.def215 OPENMP_CLAUSE(depend, OMPDependClause)
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1871 C = OMPDependClause::CreateEmpty(Context, Record[Idx++]); in readClause()
2243 void OMPClauseReader::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()
DASTWriterStmt.cpp2018 void OMPClauseWriter::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp80 typedef llvm::DenseMap<OMPDependClause *, OperatorOffsetTy>
371 void addDoacrossDependClause(OMPDependClause *C, OperatorOffsetTy &OpsOffs) { in addDoacrossDependClause()
5962 if (auto *DC = dyn_cast<OMPDependClause>(C)) { in ActOnOpenMPOrderedDirective()
10270 auto *C = OMPDependClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPDependClause()
DTreeTransform.h7998 TreeTransform<Derived>::TransformOMPDependClause(OMPDependClause *C) { in TransformOMPDependClause()
/external/clang/tools/libclang/
DCIndex.cpp2261 void OMPClauseEnqueue::VisitOMPDependClause(const OMPDependClause *C) { in VisitOMPDependClause()