Searched defs:into (Results 1 - 7 of 7) sorted by last modified time

/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java95 * A flexible view for providing a limited window into a large data set.
111 * <li><em>Scrap (view):</em> A child view that has entered into a temporarily detached
558 * The callback to convert view info diffs into animations.
1005 * If your use of RecyclerView falls into this category, set this to {@code true}. It will allow
1893 // Update the last touch co-ords, taking any scroll offset into account
3822 // which come into existence as part of the real layout.
4044 private void findMinMaxChildLayoutPositions(int[] into) { argument
4047 into[0] = NO_POSITION;
4048 into[1] = NO_POSITION;
4066 into[
[all...]
H A DStaggeredGridLayoutManager.java133 * Aggregated reverse layout value that takes RTL into account.
950 * @param into An array to put the results into. If you don't provide any, LayoutManager will
957 public int[] findFirstVisibleItemPositions(int[] into) { argument
958 if (into == null) {
959 into = new int[mSpanCount];
960 } else if (into.length < mSpanCount) {
962 + " to span count. Expected:" + mSpanCount + ", array size:" + into.length);
965 into[i] = mSpans[i].findFirstVisibleItemPosition();
967 return into;
989 findFirstCompletelyVisibleItemPositions(int[] into) argument
1021 findLastVisibleItemPositions(int[] into) argument
1053 findLastCompletelyVisibleItemPositions(int[] into) argument
[all...]
/frameworks/support/cardview/src/main/java/androidx/cardview/widget/
H A DRoundRectDrawableWithShadow.java344 void getMaxShadowAndCornerPadding(Rect into) { argument
345 getPadding(into);
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DLocation.java217 private static boolean parsePoint(String content, int[] into) { argument
222 into[0] = Integer.parseInt(content.substring(0, index).trim());
223 into[1] = Integer.parseInt(content.substring(index + 1).trim());
/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/base/core/java/com/android/internal/app/
H A DResolverListController.java128 public void addResolveListDedupe(List<ResolverActivity.ResolvedComponentInfo> into, argument
132 final int intoCount = into.size();
136 // Only loop to the end of into as it was before we started; no dupes in from.
138 final ResolverActivity.ResolvedComponentInfo rci = into.get(j);
151 into.add(rci);
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java72 * A flexible view for providing a limited window into a large data set.
88 * <li><em>Scrap (view):</em> A child view that has entered into a temporarily detached
489 * The callback to convert view info diffs into animations.
865 * If your use of RecyclerView falls into this category, set this to {@code true}. It will allow
1675 // Update the last touch co-ords, taking any scroll offset into account
3473 // which come into existence as part of the real layout.
3692 private void findMinMaxChildLayoutPositions(int[] into) { argument
3695 into[0] = NO_POSITION;
3696 into[1] = NO_POSITION;
3714 into[
[all...]

Completed in 197 milliseconds