Lines Matching defs:CountingAllocator
220 class CountingAllocator class
230 explicit CountingAllocator(AllocController& PP) : P(&PP) {} in CountingAllocator() function in CountingAllocator
232 CountingAllocator(CountingAllocator const& other) : P(other.P) { in CountingAllocator() function in CountingAllocator
236 CountingAllocator(CountingAllocator&& other) : P(other.P) { in CountingAllocator() function in CountingAllocator
241 CountingAllocator(CountingAllocator<U, ID> const& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function in CountingAllocator
246 CountingAllocator(CountingAllocator<U, ID>&& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function in CountingAllocator
285 class CountingAllocator<void, ID> class
296 explicit CountingAllocator(AllocController& PP) : P(&PP) {} in CountingAllocator() function in CountingAllocator
298 CountingAllocator(CountingAllocator const& other) : P(other.P) { in CountingAllocator() function in CountingAllocator
302 CountingAllocator(CountingAllocator&& other) : P(other.P) { in CountingAllocator() function in CountingAllocator
307 CountingAllocator(CountingAllocator<U, ID> const& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function in CountingAllocator
312 CountingAllocator(CountingAllocator<U, ID>&& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function in CountingAllocator