Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DExprCXX.cpp1222 LambdaExpr::capture_range LambdaExpr::captures() const { in captures()
1223 return capture_range(capture_begin(), capture_end()); in captures()
1236 LambdaExpr::capture_range LambdaExpr::explicit_captures() const { in explicit_captures()
1237 return capture_range(explicit_capture_begin(), explicit_capture_end()); in explicit_captures()
1248 LambdaExpr::capture_range LambdaExpr::implicit_captures() const { in implicit_captures()
1249 return capture_range(implicit_capture_begin(), implicit_capture_end()); in implicit_captures()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DExprCXX.h1934 using capture_range = llvm::iterator_range<capture_iterator>; variable
1937 capture_range captures() const;
1950 capture_range explicit_captures() const;
1961 capture_range implicit_captures() const;
DStmt.h3603 using capture_range = llvm::iterator_range<capture_iterator>; variable
3606 capture_range captures() { in captures()
3607 return capture_range(capture_begin(), capture_end()); in captures()