Searched defs:test_allocator (Results 1 – 2 of 2) sorted by relevance
20 void test_allocator(Allocator* a, int max_array_size) { in test_allocator() function42 void test_allocator() { in test_allocator() function
77 template <class U> friend class test_allocator; variable90 test_allocator() TEST_NOEXCEPT : data_(0), id_(0) {++count;} in test_allocator() function93 test_allocator(const test_allocator& a) TEST_NOEXCEPT : data_(a.data_), in test_allocator() function101 test_allocator(test_allocator&& a) TEST_NOEXCEPT : data_(a.data_), in test_allocator() function112 test_allocator(const test_allocator<U>& a) TEST_NOEXCEPT : data_(a.data_), in test_allocator() function229 template <class U> friend class test_allocator; variable240 test_allocator() TEST_NOEXCEPT : data_(0), id_(0) {} in test_allocator() function242 test_allocator(const test_allocator& a) TEST_NOEXCEPT in test_allocator() function244 template <class U> test_allocator(const test_allocator<U>& a) TEST_NOEXCEPT in test_allocator() function