Lines Matching refs:m_Elements

122       m_Elements(NULL),  in MoveArray()
150 m_Elements(reinterpret_cast<TElement*>(elements)), in m_Allocator()
182m_Elements = static_cast<TElement*>(allocator->Alloc(sizeof(TElement) * capacity, MEMORY_ALIGNMENT… in m_Allocator()
184 m_Elements = static_cast<TElement*>(allocator->Alloc(sizeof(TElement) * capacity)); in m_Allocator()
186 NW_NULL_ASSERT(m_Elements); in m_Allocator()
190 m_Elements = NULL; in m_Allocator()
192 m_End = m_Elements; in m_Allocator()
206 m_Elements(NULL), in MoveArray()
222 m_Elements(array.m_Elements), in MoveArray()
234 if (m_Allocator && m_Elements) in ~MoveArray()
236 m_Allocator->Free(m_Elements); in ~MoveArray()
267 const TElement* Elements() const { return m_Elements; } in Elements()
273 return m_Elements[index];
280 return m_Elements[index];
287 TElement* result = m_Elements; in release()
288 m_Elements = 0; in release()
318 if (m_Allocator && m_Elements)
320 m_Allocator->Free(m_Elements);
326 m_Elements = static_cast<TElement*>(elements);
334 int size() const { return m_End - m_Elements; } in size()
337 iterator begin() { return m_Elements; } in begin()
340 const_iterator begin() const { return m_Elements; } in begin()
361 TElement& front() { return *m_Elements; } in front()
364 const TElement& front() const { return *m_Elements; } in front()
373 bool empty() const { return m_Elements == m_End; } in empty()
463 TElement* m_Elements; variable
834 if (0 != m_Elements) in reserve()
837 m_Allocator->Free(m_Elements); in reserve()
840 m_Elements = elements; in reserve()
956 TElement* elements = m_Elements; in swap()
961 m_Elements = other.m_Elements; in swap()
966 other.m_Elements = elements; in swap()
1001 destroy(m_Elements + i); in resize()
1004 m_End = m_Elements + min; in resize()
1021 construct(m_Elements + i); in resize()
1024 m_End = m_Elements + max; in resize()