Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/Sema/
H A DScopeInfo.h891 llvm::SmallVector<Expr*, 4> PotentiallyCapturingExprs; variable
953 PotentiallyCapturingExprs.push_back(VarExpr); in addPotentialCapture()
1016 llvm::erase_value(PotentiallyCapturingExprs, E); in removePotentialCapture()
1019 PotentiallyCapturingExprs.clear(); in clearPotentialCaptures()
1023 return PotentiallyCapturingExprs.size(); in getNumPotentialVariableCaptures()
/llvm-project-15.0.7/clang/lib/Sema/
H A DScopeInfo.cpp235 for (Expr *E : PotentiallyCapturingExprs) { in visitPotentialCaptures()