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

/frameworks/data-binding/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/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/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.java1687 View findOneVisibleChild(int fromIndex, int toIndex, boolean completelyVisible, argument
1692 final int next = toIndex > fromIndex ? 1 : -1;
1694 for (int i = fromIndex; i != toIndex; i+=next) {
H A DStaggeredGridLayoutManager.java2344 int findOneVisibleChild(int fromIndex, int toIndex, boolean completelyVisible) { argument
2347 final int next = toIndex > fromIndex ? 1 : -1;
2348 for (int i = fromIndex; i != toIndex; i += next) {
H A DRecyclerView.java6535 * @param toIndex The View's target index
6537 public void moveView(int fromIndex, int toIndex) { argument
6544 attachView(view, toIndex);
/frameworks/base/core/java/android/view/
H A DView.java9107 int fromIndex, int toIndex) {
9116 event.setToIndex(toIndex);
9106 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. ...

Completed in 310 milliseconds