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()
25 global = std::move(global); // expected-warning{{explicitly moving}} in global_int_test()
26 (global) = std::move(global); // expected-warning{{explicitly moving}} in global_int_test()
28 using std::move; in global_int_test()
29 global = move(global); // expected-warning{{explicitly moving}} in global_int_test()
35 x = std::move(x); // expected-warning{{explicitly moving}} in field_test()
36 x = std::move(other.x); in field_test()
37 other.x = std::move(x); in field_test()
38 other.x = std::move(other.x); // expected-warning{{explicitly moving}} in field_test()
47 a = std::move(a); // expected-warning{{explicitly moving}} in struct_test()
50 b = std::move(b); // expected-warning{{explicitly moving}} in struct_test()
51 b.a = std::move(b.a); // expected-warning{{explicitly moving}} in struct_test()
54 c = std::move(c); // expected-warning{{explicitly moving}} in struct_test()