Home | History | Annotate | Download | only in compiler

Lines Matching refs:getAllocator

275 	pool_allocator(const pool_allocator<Other>& p) : allocator(&p.getAllocator()) { }
282 return getAllocator().allocate(n);
285 return getAllocator().allocate(n);
290 return reinterpret_cast<pointer>(getAllocator().allocate(n * sizeof(T)));
293 return reinterpret_cast<pointer>(getAllocator().allocate(n * sizeof(T)));
301 bool operator==(const pool_allocator& rhs) const { return &getAllocator() == &rhs.getAllocator(); }
302 bool operator!=(const pool_allocator& rhs) const { return &getAllocator() != &rhs.getAllocator(); }
308 TPoolAllocator& getAllocator() const { return *allocator; }