Lines Matching refs:zone_allocator
16 class zone_allocator {
26 typedef zone_allocator<O> other;
29 explicit zone_allocator(Zone* zone) throw() : zone_(zone) {}
30 explicit zone_allocator(const zone_allocator& other) throw()
32 template<typename U> zone_allocator(const zone_allocator<U>& other) throw()
34 template<typename U> friend class zone_allocator;
53 bool operator==(zone_allocator const& other) const {
56 bool operator!=(zone_allocator const& other) const {
63 zone_allocator();
67 typedef zone_allocator<bool> ZoneBoolAllocator;
68 typedef zone_allocator<int> ZoneIntAllocator;