Home
last modified time | relevance | path

Searched refs:no_default_allocator (Results 1 – 2 of 2) sorted by relevance

/external/libcxx/test/support/
Dmin_allocator.h48 class no_default_allocator
51 no_default_allocator() = delete;
53 no_default_allocator();
56 explicit no_default_allocator(construct_tag) {} in no_default_allocator() function
59 static no_default_allocator create() { in create()
61 return no_default_allocator(tag); in create()
68 no_default_allocator(no_default_allocator<U>) TEST_NOEXCEPT {} in no_default_allocator() function
80 friend bool operator==(no_default_allocator, no_default_allocator) {return true;}
81 friend bool operator!=(no_default_allocator x, no_default_allocator y) {return !(x == y);}
/external/libcxx/test/std/containers/sequences/list/list.ops/
Dremove.pass.cpp66 typedef no_default_allocator<int> Alloc; in main()