Lines Matching refs:test_allocator

60 class test_allocator {
66 friend class test_allocator; variable
79 typedef test_allocator<U> other;
82 TEST_CONSTEXPR test_allocator() TEST_NOEXCEPT = default;
84 …TEST_CONSTEXPR_CXX14 explicit test_allocator(test_allocator_statistics* stats) TEST_NOEXCEPT : sta… in test_allocator() function
89 TEST_CONSTEXPR explicit test_allocator(int data) TEST_NOEXCEPT : data_(data) {} in test_allocator() function
91 …TEST_CONSTEXPR_CXX14 explicit test_allocator(int data, test_allocator_statistics* stats) TEST_NOEX… in test_allocator() function
97 TEST_CONSTEXPR explicit test_allocator(int data, int id) TEST_NOEXCEPT : data_(data), id_(id) {} in test_allocator() function
99 …TEST_CONSTEXPR_CXX14 explicit test_allocator(int data, int id, test_allocator_statistics* stats) T… in test_allocator() function
105 TEST_CONSTEXPR_CXX14 test_allocator(const test_allocator& a) TEST_NOEXCEPT in test_allocator() function
115 …TEST_CONSTEXPR_CXX14 test_allocator(test_allocator&& a) TEST_NOEXCEPT : data_(a.data_), id_(a.id_)… in test_allocator() function
127 TEST_CONSTEXPR_CXX14 test_allocator(const test_allocator<U>& a) TEST_NOEXCEPT in test_allocator() function
135 TEST_CONSTEXPR_CXX20 ~test_allocator() TEST_NOEXCEPT { in ~test_allocator()
177 …TEST_CONSTEXPR friend bool operator==(const test_allocator& x, const test_allocator& y) { return x…
178 …TEST_CONSTEXPR friend bool operator!=(const test_allocator& x, const test_allocator& y) { return !…
267 class test_allocator<void> {
273 friend class test_allocator; variable
284 typedef test_allocator<U> other;
287 TEST_CONSTEXPR test_allocator() TEST_NOEXCEPT = default;
289 …TEST_CONSTEXPR_CXX14 explicit test_allocator(test_allocator_statistics* stats) TEST_NOEXCEPT : sta… in test_allocator() function
291 TEST_CONSTEXPR explicit test_allocator(int data) TEST_NOEXCEPT : data_(data) {} in test_allocator() function
293 TEST_CONSTEXPR explicit test_allocator(int data, test_allocator_statistics* stats) TEST_NOEXCEPT in test_allocator() function
297 TEST_CONSTEXPR explicit test_allocator(int data, int id) : data_(data), id_(id) {} in test_allocator() function
299 …TEST_CONSTEXPR_CXX14 explicit test_allocator(int data, int id, test_allocator_statistics* stats) T… in test_allocator() function
303 TEST_CONSTEXPR_CXX14 explicit test_allocator(const test_allocator& a) TEST_NOEXCEPT in test_allocator() function
308 TEST_CONSTEXPR_CXX14 test_allocator(const test_allocator<U>& a) TEST_NOEXCEPT in test_allocator() function
312 TEST_CONSTEXPR_CXX20 ~test_allocator() TEST_NOEXCEPT { in ~test_allocator()
320 …TEST_CONSTEXPR friend bool operator==(const test_allocator& x, const test_allocator& y) { return x…
321 …TEST_CONSTEXPR friend bool operator!=(const test_allocator& x, const test_allocator& y) { return !…