Home
last modified time | relevance | path

Searched refs:getVarRefs (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1112 auto *It = std::next(getVarRefs().end(), NumLoop + 1); in setLoopData()
1122 auto *It = std::next(getVarRefs().end(), NumLoop + 1); in getLoopData()
1132 const auto *It = std::next(getVarRefs().end(), NumLoop + 1); in getLoopData()
1137 *getVarRefs().end() = DepModifier; in setModifier()
1139 Expr *OMPDependClause::getModifier() { return *getVarRefs().end(); } in getModifier()
1726 auto *It = std::next(getVarRefs().end(), NumLoop); in setLoopData()
1732 auto *It = std::next(getVarRefs().end(), NumLoop); in getLoopData()
1738 const auto *It = std::next(getVarRefs().end(), NumLoop); in getLoopData()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h297 MutableArrayRef<Expr *> getVarRefs() { in getVarRefs() function
306 llvm::copy(VL, getVarRefs().begin()); in setVarRefs()
325 varlist_iterator varlist_begin() { return getVarRefs().begin(); } in varlist_begin()
326 varlist_iterator varlist_end() { return getVarRefs().end(); } in varlist_end()
327 varlist_const_iterator varlist_begin() const { return getVarRefs().begin(); } in varlist_begin()
328 varlist_const_iterator varlist_end() const { return getVarRefs().end(); } in varlist_end()
337 ArrayRef<const Expr *> getVarRefs() const { in getVarRefs() function
6742 ArrayRef<Expr *> getNumTeams() { return getVarRefs(); } in getNumTeams()
6836 ArrayRef<Expr *> getThreadLimit() { return getVarRefs(); } in getThreadLimit()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.cpp283 Vars = PC->getVarRefs(); in VisitOpenMPCapturedStmt()
285 Vars = PC->getVarRefs(); in VisitOpenMPCapturedStmt()
954 for (const Expr *E : C->getVarRefs()) in getDistributeLastprivateVars()
H A DCGOpenMPRuntime.cpp8094 const auto *EI = C->getVarRefs().begin(); in generateAllInfoForClauses()
8112 const auto *EI = C->getVarRefs().begin(); in generateAllInfoForClauses()
8128 const auto *EI = C->getVarRefs().begin(); in generateAllInfoForClauses()
8797 const auto *EI = C->getVarRefs().begin(); in generateInfoForCaptureFromClauseInfo()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp13246 auto VarList = C->getVarRefs(); in checkNumExprsInClause()