Lines Matching refs:ArenaAllocatorStatsImpl
75 class ArenaAllocatorStatsImpl; variable
78 class ArenaAllocatorStatsImpl<false> {
80 ArenaAllocatorStatsImpl() = default;
81 ArenaAllocatorStatsImpl(const ArenaAllocatorStatsImpl& other) = default;
82 ArenaAllocatorStatsImpl& operator = (const ArenaAllocatorStatsImpl& other) = delete;
84 void Copy(const ArenaAllocatorStatsImpl& other) { UNUSED(other); } in Copy()
94 class ArenaAllocatorStatsImpl {
96 ArenaAllocatorStatsImpl();
97 ArenaAllocatorStatsImpl(const ArenaAllocatorStatsImpl& other) = default;
98 ArenaAllocatorStatsImpl& operator = (const ArenaAllocatorStatsImpl& other) = delete;
100 void Copy(const ArenaAllocatorStatsImpl& other);
114 typedef ArenaAllocatorStatsImpl<kArenaAllocatorCountAllocations> ArenaAllocatorStats;
159 template <bool kCount> friend class ArenaAllocatorStatsImpl; variable