Lines Matching refs:move
10 template <class T> typename remove_reference<T>::type &&move(T &&t);
16 x = std::move(x); // expected-warning{{explicitly moving}} in int_test()
17 (x) = std::move(x); // expected-warning{{explicitly moving}} in int_test()
19 using std::move; in int_test()
20 x = move(x); // expected-warning{{explicitly moving}} \ in int_test()
31 expected-warning {{unqualified call to 'std::move}} in int_test()
37 x = std::move(x); // expected-warning{{explicitly moving}} in field_test()
38 x = std::move(other.x); in field_test()
39 other.x = std::move(x); in field_test()
40 other.x = std::move(other.x); // expected-warning{{explicitly moving}} in field_test()
43 …x = std::move(x); // expected-warning{{explicitly moving variable of type 'int' to itself; did you… in withSuggest()
52 a = std::move(a); // expected-warning{{explicitly moving}} in struct_test()
55 b = std::move(b); // expected-warning{{explicitly moving}} in struct_test()
56 b.a = std::move(b.a); // expected-warning{{explicitly moving}} in struct_test()
59 c = std::move(c); // expected-warning{{explicitly moving}} in struct_test()