Searched refs:OMPDependClause (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 521 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()
|
D | StmtProfile.cpp | 491 void OMPClauseProfiler::VisitOMPDependClause(const OMPDependClause *C) { in VisitOMPDependClause()
|
D | StmtPrinter.cpp | 887 void OMPClausePrinter::VisitOMPDependClause(OMPDependClause *Node) { in VisitOMPDependClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 2578 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);
|
D | RecursiveASTVisitor.h | 2874 bool RecursiveASTVisitor<Derived>::VisitOMPDependClause(OMPDependClause *C) {
|
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.h | 40 class OMPDependClause; variable 1039 const OMPDependClause *C);
|
D | CGStmtOpenMP.cpp | 2487 for (const auto *C : S.getClausesOfKind<OMPDependClause>()) in EmitOMPTaskBasedDirective() 2758 for (const auto *DC : S.getClausesOfKind<OMPDependClause>()) in EmitOMPOrderedDirective()
|
D | CGOpenMPRuntime.cpp | 6573 const OMPDependClause *C) { in emitDoacrossOrdered()
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 215 OPENMP_CLAUSE(depend, OMPDependClause)
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1871 C = OMPDependClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2243 void OMPClauseReader::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()
|
D | ASTWriterStmt.cpp | 2018 void OMPClauseWriter::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 80 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()
|
D | TreeTransform.h | 7998 TreeTransform<Derived>::TransformOMPDependClause(OMPDependClause *C) { in TransformOMPDependClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2261 void OMPClauseEnqueue::VisitOMPDependClause(const OMPDependClause *C) { in VisitOMPDependClause()
|