Home | History | Annotate | Download | only in support

Lines Matching refs:move_called

32     static bool move_called;
37 A1(A1&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;}
42 A1(A1<U>&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;}
59 template <class T> bool A1<T>::move_called = false;
94 static bool move_called;
98 A2(A2&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;}
108 template <class T> bool A2<T>::move_called = false;
140 static bool move_called;
145 A3(A3&& a) TEST_NOEXCEPT: id_(a.id()) {move_called = true;}
165 template <class T> bool A3<T>::move_called = false;