Lines Matching full:mutable
17 (void) [*this] () mutable { ++x; }; in foo()
61 const auto &L = [*this] (auto a) mutable { //expected-error{{call to deleted}} in foo()
85 auto L = [*this] () mutable { in foo()
99 auto M = [this] () mutable { in foo()
105 auto M2 = [*this] () mutable { in foo()
115 auto M = [this] (auto b) mutable { in foo()
123 auto M2 = [*this] (auto a) mutable { in foo()
130 return [=](auto a) mutable { M(a)(a); M2(a)(a); }; in foo()
136 auto L2 = [this] () mutable { in foo()
140 auto GL = [*this] (auto a) mutable { in foo()
159 auto M = [*this] () mutable { in foo()
187 auto L = [*this] () mutable { in foo()