Searched defs:toIndex (Results 1 - 13 of 13) sorted by relevance

/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DObservableArrayList.java111 protected void removeRange(int fromIndex, int toIndex) { argument
112 super.removeRange(fromIndex, toIndex);
113 notifyRemove(fromIndex, toIndex - fromIndex);
/frameworks/support/compat/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/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompat.java57 public void setToIndex(Object record, int toIndex); argument
309 public void setToIndex(Object record, int toIndex) { argument
517 public void setToIndex(Object record, int toIndex) { argument
518 AccessibilityRecordCompatIcs.setToIndex(record, toIndex);
845 * @param toIndex The index of selection end or last item index.
847 public void setToIndex(int toIndex) { argument
848 IMPL.setToIndex(mRecord, toIndex);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedStateListDrawable.java159 private boolean selectTransition(int toIndex) { argument
163 if (toIndex == mTransitionToIndex) {
166 } else if (toIndex == mTransitionFromIndex && currentTransition.canReverse()) {
170 mTransitionFromIndex = toIndex;
190 final int toId = state.getKeyframeIdAt(toIndex);
230 mTransitionToIndex = toIndex;
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java401 * @param toIndex The index of selection end or last item index.
403 public void setToIndex(int toIndex) { argument
405 mToIndex = toIndex;
/frameworks/base/core/java/android/widget/
H A DAdapterViewAnimator.java263 * @param toIndex The relative index within the window that the view is going to, -1 if it is
267 void transformViewForTransition(int fromIndex, int toIndex, View view, boolean animate) { argument
271 } else if (toIndex == -1) {
H A DStackView.java232 void transformViewForTransition(int fromIndex, int toIndex, final View view, boolean animate) { argument
241 if (fromIndex == -1 && toIndex == getNumActiveViews() -1) {
242 transformViewAtIndex(toIndex, view, false);
245 } else if (fromIndex == 0 && toIndex == 1) {
267 } else if (fromIndex == 1 && toIndex == 0) {
287 } else if (toIndex == 0) {
291 } else if ((fromIndex == 0 || fromIndex == 1) && toIndex > 1) {
301 } else if (toIndex == -1) {
314 if (toIndex != -1) {
315 transformViewAtIndex(toIndex, vie
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java1780 View findOneVisibleChild(int fromIndex, int toIndex, boolean completelyVisible, argument
1785 final int next = toIndex > fromIndex ? 1 : -1;
1787 for (int i = fromIndex; i != toIndex; i+=next) {
H A DStaggeredGridLayoutManager.java2615 int findOneVisibleChild(int fromIndex, int toIndex, boolean completelyVisible) { argument
2618 final int next = toIndex > fromIndex ? 1 : -1;
2619 for (int i = fromIndex; i != toIndex; i += next) {
H A DRecyclerView.java7656 * @param toIndex The View's target index
7658 public void moveView(int fromIndex, int toIndex) { argument
7665 attachView(view, toIndex);
/frameworks/base/core/java/android/view/
H A DView.java9798 int fromIndex, int toIndex) {
9807 event.setToIndex(toIndex);
9797 sendViewTextTraversedAtGranularityEvent(int action, int granularity, int fromIndex, int toIndex) argument
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...

Completed in 450 milliseconds