Home
last modified time | relevance | path

Searched refs:pool_allocator (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
DCommon.h52 typedef pool_allocator<char> TStringAllocator;
71 template <class T> class TVector : public std::vector<T, pool_allocator<T> > {
73 typedef typename std::vector<T, pool_allocator<T> >::size_type size_type;
74 TVector() : std::vector<T, pool_allocator<T> >() {} in TVector()
75 TVector(const pool_allocator<T>& a) : std::vector<T, pool_allocator<T> >(a) {} in TVector()
76 TVector(size_type i): std::vector<T, pool_allocator<T> >(i) {} in TVector()
80 class TMap : public std::map<K, D, CMP, pool_allocator<std::pair<const K, D> > > {
82 typedef pool_allocator<std::pair<const K, D> > tAllocator;
DPoolAlloc.h239 class pool_allocator {
251 typedef pool_allocator<Other> other;
256 pool_allocator() : allocator(GlobalPoolAllocator) { } in pool_allocator() function
257 pool_allocator(TPoolAllocator& a) : allocator(a) { } in pool_allocator() function
258 pool_allocator(const pool_allocator<T>& p) : allocator(p.allocator) { } in pool_allocator() function
261 pool_allocator(const pool_allocator<Other>& p) : allocator(p.getAllocator()) { } in pool_allocator() function
287 …bool operator==(const pool_allocator& rhs) const { return &getAllocator() == &rhs.getAllocator(); }
288 …bool operator!=(const pool_allocator& rhs) const { return &getAllocator() != &rhs.getAllocator(); }
/external/webkit/Source/ThirdParty/ANGLE/
DChangeLog710 (pool_allocator::allocate):
711 (pool_allocator::deallocate):