Home | History | Annotate | Download | only in support

Lines Matching refs:A3

126 class A3
130 explicit A3(int id = 0) TEST_NOEXCEPT : id_(id) {}
144 A3(const A3& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;}
145 A3(A3&& a) TEST_NOEXCEPT: id_(a.id()) {move_called = true;}
161 A3 select_on_container_copy_construction() const {return A3(-1);}
164 template <class T> bool A3<T>::copy_called = false;
165 template <class T> bool A3<T>::move_called = false;
166 template <class T> bool A3<T>::constructed = false;
167 template <class T> bool A3<T>::destroy_called = false;
171 bool operator==(const A3<T>& x, const A3<U>& y)
178 bool operator!=(const A3<T>& x, const A3<U>& y)