Lines Matching full:m_array
129 const PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; }
132 const T* operator-> (void) const throw() { return (*m_array)[this->m_ndx]; }
133 const T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; }
134 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; }
152 const PoolArray<T, Alignment>* m_array;
165 PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; }
168 T* operator-> (void) const throw() { return (*m_array)[this->m_ndx]; }
169 T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; }
170 T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; }
185 PoolArray<T, Alignment>* m_array;
421 , m_array (DE_NULL)
428 , m_array (array)
435 , m_array (iter.getArray())
475 , m_array (DE_NULL)
482 , m_array (array)