Lines Matching refs:iter
132 List<SoundChannel* >::iterator iter = mStop.begin(); in run() local
133 channel = *iter; in run()
134 mStop.erase(iter); in run()
147 List<SoundChannel*>::iterator iter = mRestart.begin(); in run() local
148 channel = *iter; in run()
149 mRestart.erase(iter); in run()
282 List<SoundChannel*>::iterator iter; in allocateChannel_l() local
287 iter = mChannels.begin(); in allocateChannel_l()
288 if (priority >= (*iter)->priority()) { in allocateChannel_l()
289 channel = *iter; in allocateChannel_l()
290 mChannels.erase(iter); in allocateChannel_l()
298 for (iter = mChannels.begin(); iter != mChannels.end(); ++iter) { in allocateChannel_l()
299 if (priority < (*iter)->priority()) { in allocateChannel_l()
303 mChannels.insert(iter, channel); in allocateChannel_l()
311 for (List<SoundChannel*>::iterator iter = mChannels.begin(); iter != mChannels.end(); ++iter) { in moveToFront_l() local
312 if (*iter == channel) { in moveToFront_l()
313 mChannels.erase(iter); in moveToFront_l()