Lines Matching refs:m_List
442 bool pushed = this->m_List.push_back(element); in EnqueueElement()
448 ElementType* back = &m_List.back(); in EnqueueElement()
558 bool pushed = this->m_List.push_back( in EnqueueCommand()
564 return &this->m_List.back(); in EnqueueCommand()
578 this->m_List.clear();
636 return m_List.size(); in Size()
642 return m_List.empty(); in Empty()
648 return m_List.front(); in Peek()
654 return m_List.front(); in Peek()
660 return m_List.begin(); in Begin()
666 return m_List.begin(); in Begin()
672 return m_List.end(); in End()
678 return m_List.end(); in End()
684 return m_List.rbegin(); in ReverseBegin()
690 return m_List.rbegin(); in ReverseBegin()
696 return m_List.rend(); in ReverseEnd()
702 return m_List.rend(); in ReverseEnd()
710 m_List(allocator), in BasicRenderQueue()
719 m_List(maxRenderElements, allocator), in BasicRenderQueue()
751 TElementList m_List; variable