HomeSort by relevance Sort by last modified time
    Searched refs:pool_allocator (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/angle/src/compiler/translator/
Common.h 44 typedef pool_allocator<char> TStringAllocator;
63 template <class T> class TVector : public std::vector<T, pool_allocator<T> > {
65 typedef typename std::vector<T, pool_allocator<T> >::size_type size_type;
66 TVector() : std::vector<T, pool_allocator<T> >() {}
67 TVector(const pool_allocator<T>& a) : std::vector<T, pool_allocator<T> >(a) {}
68 TVector(size_type i): std::vector<T, pool_allocator<T> >(i) {}
72 class TMap : public std::map<K, D, CMP, pool_allocator<std::pair<const K, D> > > {
74 typedef pool_allocator<std::pair<const K, D> > tAllocator;
PoolAlloc.h 30 // STL containers can use this allocator by using the pool_allocator
233 class pool_allocator { class
245 typedef pool_allocator<Other> other;
250 pool_allocator() : allocator(GetGlobalPoolAllocator()) { } function in class:pool_allocator
251 pool_allocator(TPoolAllocator& a) : allocator(&a) { } function in class:pool_allocator
252 pool_allocator(const pool_allocator<T>& p) : allocator(p.allocator) { } function in class:pool_allocator
255 pool_allocator<T>& operator=(const pool_allocator<Other>& p) {
261 pool_allocator(const pool_allocator<Other>& p) : allocator(&p.getAllocator()) { function in class:pool_allocator
    [all...]

Completed in 28 milliseconds