Lines Matching refs:ArenaAllocatorStatsImpl
106 class ArenaAllocatorStatsImpl; variable
109 class ArenaAllocatorStatsImpl<false> {
111 ArenaAllocatorStatsImpl() = default;
112 ArenaAllocatorStatsImpl(const ArenaAllocatorStatsImpl& other) = default;
113 ArenaAllocatorStatsImpl& operator = (const ArenaAllocatorStatsImpl& other) = delete;
115 void Copy(const ArenaAllocatorStatsImpl& other ATTRIBUTE_UNUSED) {} in Copy()
125 class ArenaAllocatorStatsImpl {
127 ArenaAllocatorStatsImpl();
128 ArenaAllocatorStatsImpl(const ArenaAllocatorStatsImpl& other) = default;
129 ArenaAllocatorStatsImpl& operator = (const ArenaAllocatorStatsImpl& other) = delete;
131 void Copy(const ArenaAllocatorStatsImpl& other);
144 typedef ArenaAllocatorStatsImpl<kArenaAllocatorCountAllocations> ArenaAllocatorStats;
239 template <bool kCount> friend class ArenaAllocatorStatsImpl; variable