Home
last modified time | relevance | path

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

/llvm-project/libcxx/test/support/
H A Dcontrolled_allocators.h33 class CountingAllocator; variable
236 explicit CountingAllocator(AllocController& PP) : P(&PP) {} in CountingAllocator() function
238 CountingAllocator(CountingAllocator const& other) : P(other.P) { in CountingAllocator() function
242 CountingAllocator(CountingAllocator&& other) : P(other.P) { in CountingAllocator() function
247 CountingAllocator(CountingAllocator<U, ID> const& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function
252 CountingAllocator(CountingAllocator<U, ID>&& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function
302 explicit CountingAllocator(AllocController& PP) : P(&PP) {} in CountingAllocator() function
304 CountingAllocator(CountingAllocator const& other) : P(other.P) { in CountingAllocator() function
308 CountingAllocator(CountingAllocator&& other) : P(other.P) { in CountingAllocator() function
313 CountingAllocator(CountingAllocator<U, ID> const& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function
[all …]