Home
last modified time | relevance | path

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

/external/clang/include/clang/Sema/
DScopeInfo.h727 llvm::SmallVector<Expr*, 4> PotentiallyCapturingExprs; variable
775 PotentiallyCapturingExprs.push_back(VarExpr); in addPotentialCapture()
836 PotentiallyCapturingExprs.erase( in removePotentialCapture()
837 std::remove(PotentiallyCapturingExprs.begin(), in removePotentialCapture()
838 PotentiallyCapturingExprs.end(), E), in removePotentialCapture()
839 PotentiallyCapturingExprs.end()); in removePotentialCapture()
842 PotentiallyCapturingExprs.clear(); in clearPotentialCaptures()
846 return PotentiallyCapturingExprs.size(); in getNumPotentialVariableCaptures()
/external/llvm-project/clang/include/clang/Sema/
DScopeInfo.h875 llvm::SmallVector<Expr*, 4> PotentiallyCapturingExprs; variable
937 PotentiallyCapturingExprs.push_back(VarExpr); in addPotentialCapture()
1000 PotentiallyCapturingExprs.erase( in removePotentialCapture()
1001 std::remove(PotentiallyCapturingExprs.begin(), in removePotentialCapture()
1002 PotentiallyCapturingExprs.end(), E), in removePotentialCapture()
1003 PotentiallyCapturingExprs.end()); in removePotentialCapture()
1006 PotentiallyCapturingExprs.clear(); in clearPotentialCaptures()
1010 return PotentiallyCapturingExprs.size(); in getNumPotentialVariableCaptures()
/external/clang/lib/Sema/
DScopeInfo.cpp230 E = PotentiallyCapturingExprs[Idx]; in getPotentialVariableCapture()
/external/llvm-project/clang/lib/Sema/
DScopeInfo.cpp235 for (Expr *E : PotentiallyCapturingExprs) { in visitPotentialCaptures()