Lines Matching refs:copy_called
31 static bool copy_called; variable
36 A1(const A1& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} in A1()
38 A1& operator=(const A1& a) TEST_NOEXCEPT { id_ = a.id(); copy_called = true; return *this;}
42 A1(const A1<U>& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} in A1()
60 template <class T> bool A1<T>::copy_called = false;
95 static bool copy_called; variable
99 A2(const A2& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} in A2()
101 A2& operator=(const A2& a) TEST_NOEXCEPT { id_ = a.id(); copy_called = true; return *this;}
111 template <class T> bool A2<T>::copy_called = false;
143 static bool copy_called; variable
148 A3(const A3& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} in A3()
150 A3& operator=(const A3& a) TEST_NOEXCEPT { id_ = a.id(); copy_called = true; return *this;}
170 template <class T> bool A3<T>::copy_called = false;