Lines Matching defs:other_allocator
267 class other_allocator {
271 friend class other_allocator;
276 TEST_CONSTEXPR_CXX14 other_allocator() {}
277 TEST_CONSTEXPR_CXX14 explicit other_allocator(int i) : data_(i) {}
280 TEST_CONSTEXPR_CXX14 other_allocator(const other_allocator<U>& a) : data_(a.data_) {}
285 TEST_CONSTEXPR_CXX14 other_allocator select_on_container_copy_construction() const { return other_allocator(-2); }
287 TEST_CONSTEXPR_CXX14 friend bool operator==(const other_allocator& x, const other_allocator& y) {
291 TEST_CONSTEXPR_CXX14 friend bool operator!=(const other_allocator& x, const other_allocator& y) { return !(x == y); }