/frameworks/base/core/java/android/hardware/hdmi/ |
D | HdmiTvClient.java | 193 public void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex) { 195 mService.setSystemAudioVolume(oldIndex, newIndex, maxIndex);
|
D | IHdmiControlService.aidl | 63 void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex); in setSystemAudioVolume() argument
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/animation/ |
D | PhysicsAnimationLayoutTestCase.java | 282 void onChildReordered(View child, int oldIndex, int newIndex) { in onChildReordered() argument 284 () -> mWrappedController.onChildReordered(child, oldIndex, newIndex)); in onChildReordered()
|
D | PhysicsAnimationLayoutTest.java | 502 void onChildReordered(View child, int oldIndex, int newIndex) {}
|
/frameworks/base/services/core/java/com/android/server/audio/ |
D | AudioService.java | 1865 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/ |
D | PhysicsAnimationLayout.java | 150 abstract void onChildReordered(View child, int oldIndex, int newIndex); in onChildReordered() argument 359 final int oldIndex = indexOfChild(view); 365 mController.onChildReordered(view, oldIndex, index);
|
D | ExpandedAnimationController.java | 464 void onChildReordered(View child, int oldIndex, int newIndex) { in onChildReordered() argument
|
D | StackAnimationController.java | 693 void onChildReordered(View child, int oldIndex, int newIndex) {
|
/frameworks/base/core/tests/hdmitests/src/android/hardware/hdmi/ |
D | HdmiAudioSystemClientTest.java | 264 public void setSystemAudioVolume(final int oldIndex, final int newIndex, in setSystemAudioVolume() argument
|
/frameworks/native/libs/input/ |
D | KeyCharacterMap.cpp | 178 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/ |
D | HdmiControlService.java | 1837 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/ |
D | ViewGroup.java | 5221 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()
|