Home
last modified time | relevance | path

Searched refs:capture_range (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprCXX.cpp1353 LambdaExpr::capture_range LambdaExpr::captures() const { in captures()
1354 return capture_range(capture_begin(), capture_end()); in captures()
1366 LambdaExpr::capture_range LambdaExpr::explicit_captures() const { in explicit_captures()
1367 return capture_range(explicit_capture_begin(), explicit_capture_end()); in explicit_captures()
1378 LambdaExpr::capture_range LambdaExpr::implicit_captures() const { in implicit_captures()
1379 return capture_range(implicit_capture_begin(), implicit_capture_end()); in implicit_captures()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h2022 using capture_range = llvm::iterator_range<capture_iterator>; variable
2025 capture_range captures() const;
2038 capture_range explicit_captures() const;
2049 capture_range implicit_captures() const;
H A DStmt.h3897 using capture_range = llvm::iterator_range<capture_iterator>;
3900 capture_range captures() {
3901 return capture_range(capture_begin(), capture_end());