Lines Matching defs:CountingAllocator
33 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
318 CountingAllocator(CountingAllocator<U, ID>&& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function