Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DExprCXX.cpp1043 LambdaExpr::capture_range LambdaExpr::captures() const { in captures()
1044 return capture_range(capture_begin(), capture_end()); in captures()
1057 LambdaExpr::capture_range LambdaExpr::explicit_captures() const { in explicit_captures()
1058 return capture_range(explicit_capture_begin(), explicit_capture_end()); in explicit_captures()
1069 LambdaExpr::capture_range LambdaExpr::implicit_captures() const { in implicit_captures()
1070 return capture_range(implicit_capture_begin(), implicit_capture_end()); in implicit_captures()
/external/clang/include/clang/AST/
DStmt.h2127 typedef llvm::iterator_range<capture_iterator> capture_range; typedef
2130 capture_range captures() { in captures()
2131 return capture_range(capture_begin(), capture_end()); in captures()
DExprCXX.h1552 typedef llvm::iterator_range<capture_iterator> capture_range; typedef
1555 capture_range captures() const;
1568 capture_range explicit_captures() const;
1579 capture_range implicit_captures() const;
DDecl.h3572 typedef llvm::iterator_range<capture_iterator> capture_range; typedef
3575 capture_range captures() { in captures()
3576 return capture_range(capture_begin(), capture_end()); in captures()