Lines Matching refs:m_List
440 bool pushed = this->m_List.push_back(element); in EnqueueElement()
446 ElementType* back = &m_List.back(); in EnqueueElement()
556 bool pushed = this->m_List.push_back( in EnqueueCommand()
562 return &this->m_List.back(); in EnqueueCommand()
576 this->m_List.clear();
634 return m_List.size(); in Size()
640 return m_List.empty(); in Empty()
646 return m_List.front(); in Peek()
652 return m_List.front(); in Peek()
658 return m_List.begin(); in Begin()
664 return m_List.begin(); in Begin()
670 return m_List.end(); in End()
676 return m_List.end(); in End()
682 return m_List.rbegin(); in ReverseBegin()
688 return m_List.rbegin(); in ReverseBegin()
694 return m_List.rend(); in ReverseEnd()
700 return m_List.rend(); in ReverseEnd()
708 m_List(allocator), in BasicRenderQueue()
717 m_List(maxRenderElements, allocator), in BasicRenderQueue()
749 TElementList m_List; variable