Lines Matching refs:m_Elements

124       m_Elements(NULL),  in MoveArray()
152 m_Elements(reinterpret_cast<TElement*>(elements)), in m_Allocator()
184m_Elements = static_cast<TElement*>(allocator->Alloc(sizeof(TElement) * capacity, MEMORY_ALIGNMENT… in m_Allocator()
186 m_Elements = static_cast<TElement*>(allocator->Alloc(sizeof(TElement) * capacity)); in m_Allocator()
188 NW_NULL_ASSERT(m_Elements); in m_Allocator()
192 m_Elements = NULL; in m_Allocator()
194 m_End = m_Elements; in m_Allocator()
208 m_Elements(NULL), in MoveArray()
224 m_Elements(array.m_Elements), in MoveArray()
236 if (m_Allocator && m_Elements) in ~MoveArray()
238 m_Allocator->Free(m_Elements); in ~MoveArray()
269 const TElement* Elements() const { return m_Elements; } in Elements()
275 return m_Elements[index];
282 return m_Elements[index];
289 TElement* result = m_Elements; in release()
290 m_Elements = 0; in release()
320 if (m_Allocator && m_Elements)
322 m_Allocator->Free(m_Elements);
328 m_Elements = static_cast<TElement*>(elements);
336 int size() const { return m_End - m_Elements; } in size()
339 iterator begin() { return m_Elements; } in begin()
342 const_iterator begin() const { return m_Elements; } in begin()
363 TElement& front() { return *m_Elements; } in front()
366 const TElement& front() const { return *m_Elements; } in front()
375 bool empty() const { return m_Elements == m_End; } in empty()
465 TElement* m_Elements; variable
836 if (0 != m_Elements) in reserve()
839 m_Allocator->Free(m_Elements); in reserve()
842 m_Elements = elements; in reserve()
958 TElement* elements = m_Elements; in swap()
963 m_Elements = other.m_Elements; in swap()
968 other.m_Elements = elements; in swap()
1003 destroy(m_Elements + i); in resize()
1006 m_End = m_Elements + min; in resize()
1023 construct(m_Elements + i); in resize()
1026 m_End = m_Elements + max; in resize()