Home
last modified time | relevance | path

Searched refs:oldIndex (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/core/java/android/hardware/hdmi/
DHdmiControlServiceWrapper.java166 public void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex) {
167 HdmiControlServiceWrapper.this.setSystemAudioVolume(oldIndex, newIndex, maxIndex);
387 public void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex) {} in setSystemAudioVolume() argument
DHdmiTvClient.java193 public void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex) {
195 mService.setSystemAudioVolume(oldIndex, newIndex, maxIndex);
DIHdmiControlService.aidl66 void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex); in setSystemAudioVolume() argument
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/animation/
DPhysicsAnimationLayoutTestCase.java282 void onChildReordered(View child, int oldIndex, int newIndex) { in onChildReordered() argument
284 () -> mWrappedController.onChildReordered(child, oldIndex, newIndex)); in onChildReordered()
DPhysicsAnimationLayoutTest.java502 void onChildReordered(View child, int oldIndex, int newIndex) {}
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/animation/
DPhysicsAnimationLayout.java150 abstract void onChildReordered(View child, int oldIndex, int newIndex); in onChildReordered() argument
362 final int oldIndex = indexOfChild(view);
368 mController.onChildReordered(view, oldIndex, index);
DExpandedAnimationController.java563 void onChildReordered(View child, int oldIndex, int newIndex) { in onChildReordered() argument
DStackAnimationController.java828 void onChildReordered(View child, int oldIndex, int newIndex) { in onChildReordered() argument
/frameworks/base/core/tests/hdmitests/src/android/hardware/hdmi/
DHdmiAudioSystemClientTest.java264 public void setSystemAudioVolume(final int oldIndex, final int newIndex, in setSystemAudioVolume() argument
/frameworks/base/services/core/java/com/android/server/audio/
DAudioService.java2163 int oldIndex = mStreamStates[streamType].getIndex(device); in adjustStreamVolume() local
2190 Log.e(TAG, "adjustStreamVolume() safe volume index = " + oldIndex); in adjustStreamVolume()
2247 setSystemAudioVolume(oldIndex, newIndex, getStreamMaxVolume(streamType), flags); in adjustStreamVolume()
2301 && (oldIndex != newIndex || isMuteAdjust)) { in adjustStreamVolume()
2307 sendVolumeUpdate(streamType, oldIndex, newIndex, flags, device); in adjustStreamVolume()
2696 int oldIndex; in setStreamVolume() local
2728 oldIndex = streamState.getIndex(device); in setStreamVolume()
2750 setSystemAudioVolume(oldIndex, index, getStreamMaxVolume(streamType), flags); in setStreamVolume()
2779 && (oldIndex != index)) { in setStreamVolume()
2783 sendVolumeUpdate(streamType, oldIndex, index, flags, device); in setStreamVolume()
[all …]
/frameworks/native/libs/input/
DKeyCharacterMap.cpp178 ssize_t oldIndex = map->mKeys.indexOfKey(keyCode); in combine() local
179 if (oldIndex >= 0) { in combine()
180 delete map->mKeys.valueAt(oldIndex); in combine()
181 map->mKeys.editValueAt(oldIndex) = new Key(*key); in combine()
/frameworks/base/services/core/java/com/android/server/hdmi/
DHdmiControlService.java2005 public void setSystemAudioVolume(final int oldIndex, final int newIndex, in setSystemAudioVolume() argument
2016 tv.changeVolume(oldIndex, newIndex - oldIndex, maxIndex); in setSystemAudioVolume()
/frameworks/base/core/java/android/view/
DViewGroup.java5306 final int oldIndex = mTransientIndices.get(i); in addViewInner() local
5307 if (index <= oldIndex) { in addViewInner()
5308 mTransientIndices.set(i, oldIndex + 1); in addViewInner()
5593 final int oldIndex = mTransientIndices.get(i); in removeViewInternal() local
5594 if (index < oldIndex) { in removeViewInternal()
5595 mTransientIndices.set(i, oldIndex - 1); in removeViewInternal()