Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DScopeInfo.h845 llvm::SmallVector<Expr*, 4> PotentiallyCapturingExprs; variable
906 PotentiallyCapturingExprs.push_back(VarExpr); in addPotentialCapture()
967 PotentiallyCapturingExprs.erase( in removePotentialCapture()
968 std::remove(PotentiallyCapturingExprs.begin(), in removePotentialCapture()
969 PotentiallyCapturingExprs.end(), E), in removePotentialCapture()
970 PotentiallyCapturingExprs.end()); in removePotentialCapture()
973 PotentiallyCapturingExprs.clear(); in clearPotentialCaptures()
977 return PotentiallyCapturingExprs.size(); in getNumPotentialVariableCaptures()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DScopeInfo.cpp240 E = PotentiallyCapturingExprs[Idx]; in getPotentialVariableCapture()