Lines Matching refs:ArenaAllocatorStatsImpl
111 class ArenaAllocatorStatsImpl; variable
114 class ArenaAllocatorStatsImpl<false> {
116 ArenaAllocatorStatsImpl() = default;
117 ArenaAllocatorStatsImpl(const ArenaAllocatorStatsImpl& other) = default;
118 ArenaAllocatorStatsImpl& operator = (const ArenaAllocatorStatsImpl& other) = delete;
120 void Copy(const ArenaAllocatorStatsImpl& other ATTRIBUTE_UNUSED) {} in Copy()
130 class ArenaAllocatorStatsImpl {
132 ArenaAllocatorStatsImpl();
133 ArenaAllocatorStatsImpl(const ArenaAllocatorStatsImpl& other) = default;
134 ArenaAllocatorStatsImpl& operator = (const ArenaAllocatorStatsImpl& other) = delete;
136 void Copy(const ArenaAllocatorStatsImpl& other);
149 typedef ArenaAllocatorStatsImpl<kArenaAllocatorCountAllocations> ArenaAllocatorStats;
220 template <bool kCount> friend class ArenaAllocatorStatsImpl; variable