/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 | 60 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 | 278 void onChildReordered(View child, int oldIndex, int newIndex) { in onChildReordered() argument 280 () -> mWrappedController.onChildReordered(child, oldIndex, newIndex)); in onChildReordered()
|
D | PhysicsAnimationLayoutTest.java | 490 void onChildReordered(View child, int oldIndex, int newIndex) {}
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/animation/ |
D | PhysicsAnimationLayout.java | 143 abstract void onChildReordered(View child, int oldIndex, int newIndex); in onChildReordered() argument 351 final int oldIndex = indexOfChild(view); 357 mController.onChildReordered(view, oldIndex, index);
|
D | ExpandedAnimationController.java | 390 void onChildReordered(View child, int oldIndex, int newIndex) { in onChildReordered() argument
|
D | StackAnimationController.java | 654 void onChildReordered(View child, int oldIndex, int newIndex) {}
|
/frameworks/base/services/core/java/com/android/server/audio/ |
D | AudioService.java | 1811 int oldIndex = mStreamStates[streamType].getIndex(device); in adjustStreamVolume() local 1837 Log.e(TAG, "adjustStreamVolume() safe volume index = " + oldIndex); in adjustStreamVolume() 1893 setSystemAudioVolume(oldIndex, newIndex, getStreamMaxVolume(streamType), flags); in adjustStreamVolume() 1930 (oldIndex != newIndex || isMuteAdjust)) { in adjustStreamVolume() 1942 sendVolumeUpdate(streamType, oldIndex, index, flags, device); in adjustStreamVolume() 2079 int oldIndex = AudioSystem.getVolumeIndexForAttributes(attr, device); in setVolumeIndexForAttributes() local 2282 int oldIndex; in setStreamVolume() local 2314 oldIndex = streamState.getIndex(device); in setStreamVolume() 2336 setSystemAudioVolume(oldIndex, index, getStreamMaxVolume(streamType), flags); in setStreamVolume() 2369 (oldIndex != index)) { in setStreamVolume() [all …]
|
/frameworks/base/core/tests/hdmitests/src/android/hardware/hdmi/ |
D | HdmiAudioSystemClientTest.java | 254 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 | 1788 public void setSystemAudioVolume(final int oldIndex, final int newIndex, in setSystemAudioVolume() argument 1799 tv.changeVolume(oldIndex, newIndex - oldIndex, maxIndex); in setSystemAudioVolume()
|
/frameworks/base/core/java/android/view/ |
D | ViewGroup.java | 5177 final int oldIndex = mTransientIndices.get(i); in addViewInner() local 5178 if (index <= oldIndex) { in addViewInner() 5179 mTransientIndices.set(i, oldIndex + 1); in addViewInner() 5464 final int oldIndex = mTransientIndices.get(i); in removeViewInternal() local 5465 if (index < oldIndex) { in removeViewInternal() 5466 mTransientIndices.set(i, oldIndex - 1); in removeViewInternal()
|