Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/hardware/hdmi/
DHdmiTvClient.java193 public void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex) {
195 mService.setSystemAudioVolume(oldIndex, newIndex, maxIndex);
DIHdmiControlService.aidl63 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/services/core/java/com/android/server/audio/
DAudioService.java1865 int oldIndex = mStreamStates[streamType].getIndex(device); in adjustStreamVolume() local
1891 Log.e(TAG, "adjustStreamVolume() safe volume index = " + oldIndex); in adjustStreamVolume()
1947 setSystemAudioVolume(oldIndex, newIndex, getStreamMaxVolume(streamType), flags); in adjustStreamVolume()
1982 && (oldIndex != newIndex || isMuteAdjust)) { in adjustStreamVolume()
1989 sendVolumeUpdate(streamType, oldIndex, index, flags, device); in adjustStreamVolume()
2365 int oldIndex; in setStreamVolume() local
2397 oldIndex = streamState.getIndex(device); in setStreamVolume()
2419 setSystemAudioVolume(oldIndex, index, getStreamMaxVolume(streamType), flags); in setStreamVolume()
2449 && (oldIndex != index)) { in setStreamVolume()
2453 sendVolumeUpdate(streamType, oldIndex, index, flags, device); in setStreamVolume()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/animation/
DPhysicsAnimationLayout.java150 abstract void onChildReordered(View child, int oldIndex, int newIndex); in onChildReordered() argument
359 final int oldIndex = indexOfChild(view);
365 mController.onChildReordered(view, oldIndex, index);
DExpandedAnimationController.java464 void onChildReordered(View child, int oldIndex, int newIndex) { in onChildReordered() argument
DStackAnimationController.java693 void onChildReordered(View child, int oldIndex, int newIndex) {
/frameworks/base/core/tests/hdmitests/src/android/hardware/hdmi/
DHdmiAudioSystemClientTest.java264 public void setSystemAudioVolume(final int oldIndex, final int newIndex, in setSystemAudioVolume() argument
/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.java1837 public void setSystemAudioVolume(final int oldIndex, final int newIndex, in setSystemAudioVolume() argument
1848 tv.changeVolume(oldIndex, newIndex - oldIndex, maxIndex); in setSystemAudioVolume()
/frameworks/base/core/java/android/view/
DViewGroup.java5221 final int oldIndex = mTransientIndices.get(i); in addViewInner() local
5222 if (index <= oldIndex) { in addViewInner()
5223 mTransientIndices.set(i, oldIndex + 1); in addViewInner()
5508 final int oldIndex = mTransientIndices.get(i); in removeViewInternal() local
5509 if (index < oldIndex) { in removeViewInternal()
5510 mTransientIndices.set(i, oldIndex - 1); in removeViewInternal()