Searched refs:oldIndex (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/java/android/media/
H A DAudioService.java430 final int oldIndex = (streamState.muteCount() != 0) ? streamState.mLastAudibleIndex : streamState.mIndex;
439 adjustVolume = checkForRingerModeChange(oldIndex, direction);
464 sendVolumeUpdate(streamType, oldIndex, index);
472 final int oldIndex = (streamState.muteCount() != 0) ? streamState.mLastAudibleIndex : streamState.mIndex;
482 sendVolumeUpdate(streamType, oldIndex, index);
485 private void sendVolumeUpdate(int streamType, int oldIndex, int index) { argument
486 oldIndex = (oldIndex + 5) / 10;
492 intent.putExtra(AudioManager.EXTRA_PREV_VOLUME_STREAM_VALUE, oldIndex);
1136 private boolean checkForRingerModeChange(int oldIndex, in argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarService.java396 int oldIndex = mOngoing.findEntry(key);
397 if (oldIndex >= 0) {
400 oldIndex = mLatest.findEntry(key);
401 if (oldIndex < 0) {
407 final NotificationData.Entry oldEntry = oldList.getEntryAt(oldIndex);
/frameworks/base/libs/ui/
H A DInputReader.cpp2271 int32_t oldIndex = mLastTouch.idToIndex[moveId]; local
2273 if (mLastTouch.pointers[oldIndex] != mCurrentTouch.pointers[newIndex]) {
2274 interimTouch.pointers[oldIndex] = mCurrentTouch.pointers[newIndex];
/frameworks/base/services/java/com/android/server/
H A DWindowManagerService.java1572 int oldIndex = localmWindows.indexOf(wallpaper);
1573 if (oldIndex >= 0) {
1575 + oldIndex + ": " + wallpaper);
1576 localmWindows.remove(oldIndex);
1578 if (oldIndex < foundI) {
1586 + " from " + oldIndex + " to " + foundI);

Completed in 244 milliseconds