Home
last modified time | relevance | path

Searched refs:PotentiallyCapturingExprs (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DScopeInfo.h879 llvm::SmallVector<Expr*, 4> PotentiallyCapturingExprs; variable
941 PotentiallyCapturingExprs.push_back(VarExpr); in addPotentialCapture()
1004 PotentiallyCapturingExprs.erase( in removePotentialCapture()
1005 std::remove(PotentiallyCapturingExprs.begin(), in removePotentialCapture()
1006 PotentiallyCapturingExprs.end(), E), in removePotentialCapture()
1007 PotentiallyCapturingExprs.end()); in removePotentialCapture()
1010 PotentiallyCapturingExprs.clear(); in clearPotentialCaptures()
1014 return PotentiallyCapturingExprs.size(); in getNumPotentialVariableCaptures()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DScopeInfo.cpp235 for (Expr *E : PotentiallyCapturingExprs) { in visitPotentialCaptures()