Lines Matching refs:move_called
32 static bool move_called; variable
37 A1(A1&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} in A1()
39 A1& operator=(A1&& a) TEST_NOEXCEPT { id_ = a.id(); move_called = true; return *this;}
44 A1(A1<U>&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} in A1()
61 template <class T> bool A1<T>::move_called = false;
96 static bool move_called; variable
100 A2(A2&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} in A2()
102 A2& operator=(A2&& a) TEST_NOEXCEPT { id_ = a.id(); move_called = true; return *this;}
112 template <class T> bool A2<T>::move_called = false;
144 static bool move_called; variable
149 A3(A3&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} in A3()
151 A3& operator=(A3&& a) TEST_NOEXCEPT { id_ = a.id(); move_called = true; return *this;}
171 template <class T> bool A3<T>::move_called = false;