Lines Matching refs:m_PriorityList
101 NW_ASSERT( m_PriorityList.IsEmpty() ); in Destroy()
107 m_PriorityList.Clear(); in Destroy()
220 if ( m_PriorityList.GetSize() < 2 ) return; in SortPriorityList()
228 while ( !m_PriorityList.IsEmpty() ) in SortPriorityList()
230 Sound& front = m_PriorityList.GetFront(); in SortPriorityList()
231 m_PriorityList.PopFront(); in SortPriorityList()
240 m_PriorityList.PushBack( &front ); in SortPriorityList()
256 if ( m_PriorityList.IsEmpty() ) return NULL; in GetLowestPrioritySound()
257 return &m_PriorityList.GetFront(); in GetLowestPrioritySound()
271 return m_PriorityList.GetSize(); in GetActiveCount()
289 Iterator itr = m_PriorityList.GetBeginIter(); in InsertPriorityList()
290 while ( itr != m_PriorityList.GetEndIter() ) in InsertPriorityList()
295 m_PriorityList.Insert( itr, sound ); in InsertPriorityList()
297 void RemovePriorityList( Sound* sound ) { m_PriorityList.Erase( sound ); } in RemovePriorityList()
299 PriorityList m_PriorityList; variable