Searched defs:toIndex (Results 1 - 15 of 15) 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/java/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompat.java403 * @param toIndex The index of selection end or last item index.
408 public void setToIndex(int toIndex) { argument
409 mRecord.setToIndex(toIndex);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DViewBoundsCheck.java197 * Returns the first view starting from fromIndex to toIndex in views whose bounds lie within
203 * @param toIndex The view position index to end the search at.
213 View findOneViewWithinBoundFlags(int fromIndex, int toIndex, argument
218 final int next = toIndex > fromIndex ? 1 : -1;
220 for (int i = fromIndex; i != toIndex; i += next) {
H A DLinearLayoutManager.java1923 View findOneVisibleChild(int fromIndex, int toIndex, boolean completelyVisible, argument
1940 .findOneViewWithinBoundFlags(fromIndex, toIndex, preferredBoundsFlag,
1942 .findOneViewWithinBoundFlags(fromIndex, toIndex, preferredBoundsFlag,
1946 View findOnePartiallyOrCompletelyInvisibleChild(int fromIndex, int toIndex) { argument
1948 final int next = toIndex > fromIndex ? 1 : (toIndex < fromIndex ? -1 : 0);
1967 .findOneViewWithinBoundFlags(fromIndex, toIndex, preferredBoundsFlag,
1969 .findOneViewWithinBoundFlags(fromIndex, toIndex, preferredBoundsFlag,
H A DStaggeredGridLayoutManager.java2702 * @param toIndex The child position index to end the search at.
2714 int findOnePartiallyOrCompletelyVisibleChild(int fromIndex, int toIndex, argument
2720 final int next = toIndex > fromIndex ? 1 : -1;
2721 for (int i = fromIndex; i != toIndex; i += next) {
2748 int findOneVisibleChild(int fromIndex, int toIndex, boolean completelyVisible) { argument
2749 return findOnePartiallyOrCompletelyVisibleChild(fromIndex, toIndex, completelyVisible,
2753 int findOnePartiallyVisibleChild(int fromIndex, int toIndex, argument
2755 return findOnePartiallyOrCompletelyVisibleChild(fromIndex, toIndex, false, false,
H A DRecyclerView.java8280 * @param toIndex The View's target index
8282 public void moveView(int fromIndex, int toIndex) { argument
8289 attachView(view, 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.java422 * @param toIndex The index of selection end or last item index.
424 public void setToIndex(int toIndex) { argument
426 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/base/core/java/com/android/internal/widget/
H A DLinearLayoutManager.java1862 View findOneVisibleChild(int fromIndex, int toIndex, boolean completelyVisible, argument
1867 final int next = toIndex > fromIndex ? 1 : -1;
1869 for (int i = fromIndex; i != toIndex; i += next) {
H A DRecyclerView.java7972 * @param toIndex The View's target index
7974 public void moveView(int fromIndex, int toIndex) { argument
7981 attachView(view, toIndex);
/frameworks/base/core/java/android/view/
H A DView.java11549 int fromIndex, int toIndex) {
11558 event.setToIndex(toIndex);
11548 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 1258 milliseconds