Searched defs:toIndex (Results 1 - 16 of 16) 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/base/location/tests/locationtests/src/android/location/
H A DSatelliteInfo.java139 * Set the bit in the range [fromIndex, toIndex), index start from the lowest bit.
144 private int setRange(int targetValue, int value, int fromIndex, int toIndex) { argument
145 int rangeLen = toIndex - fromIndex;
/frameworks/support/compat/src/main/java/androidx/core/view/accessibility/
H A DAccessibilityRecordCompat.java404 * @param toIndex The index of selection end or last item index.
409 public void setToIndex(int toIndex) { argument
410 mRecord.setToIndex(toIndex);
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DViewBoundsCheck.java198 * Returns the first view starting from fromIndex to toIndex in views whose bounds lie within
204 * @param toIndex The view position index to end the search at.
214 View findOneViewWithinBoundFlags(int fromIndex, int toIndex, argument
219 final int next = toIndex > fromIndex ? 1 : -1;
221 for (int i = fromIndex; i != toIndex; i += next) {
H A DLinearLayoutManager.java1922 View findOneVisibleChild(int fromIndex, int toIndex, boolean completelyVisible, argument
1939 .findOneViewWithinBoundFlags(fromIndex, toIndex, preferredBoundsFlag,
1941 .findOneViewWithinBoundFlags(fromIndex, toIndex, preferredBoundsFlag,
1945 View findOnePartiallyOrCompletelyInvisibleChild(int fromIndex, int toIndex) { argument
1947 final int next = toIndex > fromIndex ? 1 : (toIndex < fromIndex ? -1 : 0);
1966 .findOneViewWithinBoundFlags(fromIndex, toIndex, preferredBoundsFlag,
1968 .findOneViewWithinBoundFlags(fromIndex, toIndex, preferredBoundsFlag,
H A DStaggeredGridLayoutManager.java2742 * @param toIndex The child position index to end the search at.
2754 int findOnePartiallyOrCompletelyVisibleChild(int fromIndex, int toIndex, argument
2760 final int next = toIndex > fromIndex ? 1 : -1;
2761 for (int i = fromIndex; i != toIndex; i += next) {
2788 int findOneVisibleChild(int fromIndex, int toIndex, boolean completelyVisible) { argument
2789 return findOnePartiallyOrCompletelyVisibleChild(fromIndex, toIndex, completelyVisible,
2793 int findOnePartiallyVisibleChild(int fromIndex, int toIndex, argument
2795 return findOnePartiallyOrCompletelyVisibleChild(fromIndex, toIndex, false, false,
H A DRecyclerView.java8542 * @param toIndex The View's target index
8544 public void moveView(int fromIndex, int toIndex) { argument
8551 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.java429 * @param toIndex The index of selection end or last item index.
431 public void setToIndex(int toIndex) { argument
433 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.java231 void transformViewForTransition(int fromIndex, int toIndex, final View view, boolean animate) { argument
240 if (fromIndex == -1 && toIndex == getNumActiveViews() -1) {
241 transformViewAtIndex(toIndex, view, false);
244 } else if (fromIndex == 0 && toIndex == 1) {
266 } else if (fromIndex == 1 && toIndex == 0) {
286 } else if (toIndex == 0) {
290 } else if ((fromIndex == 0 || fromIndex == 1) && toIndex > 1) {
300 } else if (toIndex == -1) {
313 if (toIndex != -1) {
314 transformViewAtIndex(toIndex, vie
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DLinearLayoutManager.java1858 View findOneVisibleChild(int fromIndex, int toIndex, boolean completelyVisible, argument
1863 final int next = toIndex > fromIndex ? 1 : -1;
1865 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.java12286 int fromIndex, int toIndex) {
12295 event.setToIndex(toIndex);
12285 sendViewTextTraversedAtGranularityEvent(int action, int granularity, int fromIndex, int toIndex) argument
[all...]
/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 973 milliseconds