Home
last modified time | relevance | path

Searched defs:NullAllocator (Results 1 – 1 of 1) sorted by relevance

/external/libcxx/test/support/
Dcontrolled_allocators.hpp444 class NullAllocator class
450 explicit NullAllocator(AllocController& PP) : P(&PP) {} in NullAllocator() function in NullAllocator
452 NullAllocator(NullAllocator const& other) : P(other.P) { in NullAllocator() function in NullAllocator
456 NullAllocator(NullAllocator&& other) : P(other.P) { in NullAllocator() function in NullAllocator
461 NullAllocator(NullAllocator<U> const& other) TEST_NOEXCEPT : P(other.P) { in NullAllocator() function in NullAllocator
466 NullAllocator(NullAllocator<U>&& other) TEST_NOEXCEPT : P(other.P) { in NullAllocator() function in NullAllocator