Home | History | Annotate | Download | only in support

Lines Matching refs:A2

80 class A2
84 explicit A2(int id = 0) TEST_NOEXCEPT : id_(id) {}
99 A2(const A2& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;}
100 A2(A2&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;}
101 A2& operator=(const A2& a) TEST_NOEXCEPT { id_ = a.id(); copy_called = true; return *this;}
102 A2& operator=(A2&& a) TEST_NOEXCEPT { id_ = a.id(); move_called = true; return *this;}
111 template <class T> bool A2<T>::copy_called = false;
112 template <class T> bool A2<T>::move_called = false;
113 template <class T> bool A2<T>::allocate_called = false;
117 bool operator==(const A2<T>& x, const A2<U>& y)
124 bool operator!=(const A2<T>& x, const A2<U>& y)