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

/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompatIcs.java208 public static void setToIndex(Object record, int toIndex) { argument
209 ((AccessibilityRecord) record).setToIndex(toIndex);
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompat.java55 public void setToIndex(Object record, int toIndex); argument
257 public void setToIndex(Object record, int toIndex) { argument
443 public void setToIndex(Object record, int toIndex) { argument
444 AccessibilityRecordCompatIcs.setToIndex(record, toIndex);
711 * @param toIndex The index of selection end or last item index.
713 public void setToIndex(int toIndex) { argument
714 IMPL.setToIndex(mRecord, toIndex);
/frameworks/base/core/java/android/widget/
H A DStackView.java223 void transformViewForTransition(int fromIndex, int toIndex, final View view, boolean animate) { argument
232 if (fromIndex == -1 && toIndex == getNumActiveViews() -1) {
233 transformViewAtIndex(toIndex, view, false);
236 } else if (fromIndex == 0 && toIndex == 1) {
258 } else if (fromIndex == 1 && toIndex == 0) {
278 } else if (toIndex == 0) {
282 } else if ((fromIndex == 0 || fromIndex == 1) && toIndex > 1) {
292 } else if (toIndex == -1) {
305 if (toIndex != -1) {
306 transformViewAtIndex(toIndex, vie
[all...]
H A DAdapterViewAnimator.java257 * @param toIndex The relative index within the window that the view is going to, -1 if it is
261 void transformViewForTransition(int fromIndex, int toIndex, View view, boolean animate) { argument
265 } else if (toIndex == -1) {
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java333 * @param toIndex The index of selection end or last item index.
335 public void setToIndex(int toIndex) { argument
337 mToIndex = toIndex;

Completed in 1183 milliseconds