Searched refs:pool_allocator (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A 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> >() {}
75 TVector(const pool_allocator<T>& a) : std::vector<T, pool_allocator<T> >(a) {}
76 TVector(size_type i): std::vector<T, pool_allocator<T> >(i) {}
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;
H A DPoolAlloc.h30 // STL containers can use this allocator by using the pool_allocator
239 class pool_allocator { class
251 typedef pool_allocator<Other> other;
256 pool_allocator() : allocator(GlobalPoolAllocator) { } function in class:pool_allocator
257 pool_allocator(TPoolAllocator& a) : allocator(a) { } function in class:pool_allocator
258 pool_allocator(const pool_allocator<T>& p) : allocator(p.allocator) { } function in class:pool_allocator
261 pool_allocator(const pool_allocator<Other>& p) : allocator(p.getAllocator()) { } function in class:pool_allocator
287 bool operator==(const pool_allocator
[all...]

Completed in 37 milliseconds