Searched refs:toIndex (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompatIcs.java190 public static void setToIndex(Object record, int toIndex) { argument
191 ((AccessibilityRecord) record).setToIndex(toIndex);
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompat.java57 public void setToIndex(Object record, int toIndex); argument
263 public void setToIndex(Object record, int toIndex) { argument
471 public void setToIndex(Object record, int toIndex) { argument
472 AccessibilityRecordCompatIcs.setToIndex(record, toIndex);
797 * @param toIndex The index of selection end or last item index.
799 public void setToIndex(int toIndex) { argument
800 IMPL.setToIndex(mRecord, toIndex);
/frameworks/base/core/java/android/widget/
H A DStackView.java226 void transformViewForTransition(int fromIndex, int toIndex, final View view, boolean animate) { argument
235 if (fromIndex == -1 && toIndex == getNumActiveViews() -1) {
236 transformViewAtIndex(toIndex, view, false);
239 } else if (fromIndex == 0 && toIndex == 1) {
261 } else if (fromIndex == 1 && toIndex == 0) {
281 } else if (toIndex == 0) {
285 } else if ((fromIndex == 0 || fromIndex == 1) && toIndex > 1) {
295 } else if (toIndex == -1) {
308 if (toIndex != -1) {
309 transformViewAtIndex(toIndex, vie
[all...]
H A DAdapterViewAnimator.java260 * @param toIndex The relative index within the window that the view is going to, -1 if it is
264 void transformViewForTransition(int fromIndex, int toIndex, View view, boolean animate) { argument
268 } else if (toIndex == -1) {
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java395 * @param toIndex The index of selection end or last item index.
397 public void setToIndex(int toIndex) { argument
399 mToIndex = toIndex;
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
H A DPrintJobConfigActivity.java1933 final int toIndex;
1940 toIndex = (dashIndex < range.length() - 1)
1944 fromIndex = toIndex = Integer.parseInt(range) - 1;
1947 PageRange pageRange = new PageRange(Math.min(fromIndex, toIndex),
1948 Math.max(fromIndex, toIndex));
/frameworks/base/core/java/android/view/
H A DView.java7530 int fromIndex, int toIndex) {
7539 event.setToIndex(toIndex);
7529 sendViewTextTraversedAtGranularityEvent(int action, int granularity, int fromIndex, int toIndex) argument

Completed in 159 milliseconds