Searched refs:non_default_test_allocator (Results 1 – 3 of 3) sorted by relevance
98 class non_default_test_allocator103 template <class U> friend class non_default_test_allocator; variable114 template <class U> struct rebind {typedef non_default_test_allocator<U> other;};117 explicit non_default_test_allocator(int i) throw() : data_(i) {++count;} in non_default_test_allocator() function118 non_default_test_allocator(const non_default_test_allocator& a) throw() in throw()120 template <class U> non_default_test_allocator(const non_default_test_allocator<U>& a) throw() in non_default_test_allocator() function122 ~non_default_test_allocator() throw() {assert(data_ >= 0); --count; data_ = -1;} in throw()151 friend bool operator==(const non_default_test_allocator& x, const non_default_test_allocator& y)153 friend bool operator!=(const non_default_test_allocator& x, const non_default_test_allocator& y)
103 non_default_test_allocator<DummyClass> non_default_alloc(42); in main()
121 non_default_test_allocator<DummyClass> alloc(42); in main()