• Home
  • Raw
  • Download

Lines Matching refs:PoolArray

52 class PoolArray  class
58 explicit PoolArray (MemPool* pool);
59 PoolArray (MemPool* pool, const PoolArray<T, Alignment>& other);
60 ~PoolArray (void);
92PoolArray (const PoolArray<T, Alignment>& other); // \note Default copy ctor is not allowed, use…
123 PoolArrayConstIterator (const PoolArray<T, Alignment>* array, deIntptr ndx);
129 const PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; } in getArray()
152 const PoolArray<T, Alignment>* m_array;
160 PoolArrayIterator (PoolArray<T, Alignment>* array, deIntptr ndx);
165 PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; } in getArray()
185 PoolArray<T, Alignment>* m_array;
217 PoolArray<T, Alignment>::PoolArray (MemPool* pool) in PoolArray() function in de::PoolArray
228 PoolArray<T, Alignment>::~PoolArray (void) in ~PoolArray()
235 inline void PoolArray<T, Alignment>::clear (void) in clear()
241 inline void PoolArray<T, Alignment>::resize (deUintptr newSize) in resize()
265 inline void PoolArray<T, Alignment>::resize (deUintptr newSize, const T& value) in resize()
283 inline void PoolArray<T, Alignment>::reserve (deUintptr capacity) in reserve()
350 inline void PoolArray<T, Alignment>::pushBack (const T& value) in pushBack()
357 inline T PoolArray<T, Alignment>::popBack (void) in popBack()
365 inline T* PoolArray<T, Alignment>::getPtr (deIntptr ndx) const in getPtr()
426 inline PoolArrayConstIterator<T, Alignment>::PoolArrayConstIterator (const PoolArray<T, Alignment>*… in PoolArrayConstIterator()
480 inline PoolArrayIterator<T, Alignment>::PoolArrayIterator (PoolArray<T, Alignment>* array, deIntptr… in PoolArrayIterator()