Lines Matching defs:m_array
138 const PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; }
141 const T* operator-> (void) const throw() { return &(*m_array)[this->m_ndx]; }
142 const T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; }
143 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; }
161 const PoolArray<T, Alignment>* m_array;
174 PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; }
177 T* operator-> (void) const throw() { return &(*m_array)[this->m_ndx]; }
178 T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; }
179 T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; }
194 PoolArray<T, Alignment>* m_array;
430 , m_array (DE_NULL)
437 , m_array (array)
444 , m_array (iter.getArray())
484 , m_array (DE_NULL)
491 , m_array (array)