Searched defs:newIndex (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiTvClient.java174 * @param newIndex volume index to be set
177 public void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex) { argument
179 mService.setSystemAudioVolume(oldIndex, newIndex, maxIndex);
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java584 forwardIndexA = cccA.newIndex;
585 forwardIndexB = cccB.newIndex;
592 forwardIndexA = cccA.newIndex;
601 forwardIndexB = cccB.newIndex;
2700 public final int newIndex; field in class:PhoneNumberUtils.CountryCallingCodeAndNewIndex
2701 public CountryCallingCodeAndNewIndex(int countryCode, int newIndex) { argument
2703 this.newIndex = newIndex;
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiControlService.java1414 public void setSystemAudioVolume(final int oldIndex, final int newIndex, argument
1425 tv.changeVolume(oldIndex, newIndex - oldIndex, maxIndex);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java354 public void updateSpeedBumpIndex(int newIndex) { argument
358 boolean validIndex = newIndex > 0;
359 if (newIndex > getChildCount() - 1) {
361 newIndex = -1;
363 if (validIndex && currentIndex != newIndex) {
364 changeViewPosition(mSpeedBumpView, newIndex);
367 mAmbientState.setSpeedBumpIndex(newIndex);
1700 * @param newIndex the new index
1702 public void changeViewPosition(View child, int newIndex) { argument
1704 if (child != null && child.getParent() == this && currentIndex != newIndex) {
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp3716 const ssize_t newIndex = getResource(value->data, value, true, 0, &newFlags, local
3718 if (newIndex == BAD_INDEX) {
3721 TABLE_THEME(ALOGI("Resolving reference %p: newIndex=%d, type=0x%x, data=%p\n",
3722 (void*)lastRef, (int)newIndex, (int)value->dataType, (void*)value->data));
3723 //printf("Getting reference 0x%08x: newIndex=%d\n", value->data, newIndex);
3725 if (newIndex < 0) {
3731 blockIndex = newIndex;

Completed in 205 milliseconds