Lines Matching refs:A2
76 class A2
80 explicit A2(int id = 0) : id_(id) {}
95 A2(const A2& a) : id_(a.id()) {copy_called = true;}
96 A2(A2&& a) : id_(a.id()) {move_called = true;}
105 template <class T> bool A2<T>::copy_called = false;
106 template <class T> bool A2<T>::move_called = false;
107 template <class T> bool A2<T>::allocate_called = false;
111 bool operator==(const A2<T>& x, const A2<U>& y)
118 bool operator!=(const A2<T>& x, const A2<U>& y)