Lines Matching refs:sound
130 bool ExternalSoundPlayer::AppendSound( internal::BasicSound* sound ) in AppendSound() argument
132 NW_NULL_ASSERT( sound ); in AppendSound()
134 int allocPriority = sound->CalcCurrentPlayerPriority(); in AppendSound()
146 m_SoundList.PushBack( sound ); in AppendSound()
148 sound->AttachExternalSoundPlayer( this ); in AppendSound()
184 void ExternalSoundPlayer::RemoveSound( internal::BasicSound* sound ) in RemoveSound() argument
187 m_SoundList.Erase( sound ); in RemoveSound()
188 sound->DetachExternalSoundPlayer( this ); in RemoveSound()
227 internal::BasicSound* sound = NULL; in GetLowestPrioritySound() local
234 sound = &*itr; in GetLowestPrioritySound()
239 return sound; in GetLowestPrioritySound()