Lines Matching refs:m_PriorityList
99 NW_ASSERT( m_PriorityList.IsEmpty() ); in Destroy()
105 m_PriorityList.Clear(); in Destroy()
218 if ( m_PriorityList.GetSize() < 2 ) return; in SortPriorityList()
226 while ( !m_PriorityList.IsEmpty() ) in SortPriorityList()
228 Sound& front = m_PriorityList.GetFront(); in SortPriorityList()
229 m_PriorityList.PopFront(); in SortPriorityList()
238 m_PriorityList.PushBack( &front ); in SortPriorityList()
254 if ( m_PriorityList.IsEmpty() ) return NULL; in GetLowestPrioritySound()
255 return &m_PriorityList.GetFront(); in GetLowestPrioritySound()
269 return m_PriorityList.GetSize(); in GetActiveCount()
287 Iterator itr = m_PriorityList.GetBeginIter(); in InsertPriorityList()
288 while ( itr != m_PriorityList.GetEndIter() ) in InsertPriorityList()
293 m_PriorityList.Insert( itr, sound ); in InsertPriorityList()
295 void RemovePriorityList( Sound* sound ) { m_PriorityList.Erase( sound ); } in RemovePriorityList()
297 PriorityList m_PriorityList; variable