Searched refs:reverseLayout (Results 1 - 9 of 9) sorted by relevance

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DScrollbarHelper.java31 boolean smoothScrollbarEnabled, boolean reverseLayout) {
40 final int itemsBefore = reverseLayout
29 computeScrollOffset(RecyclerView.State state, OrientationHelper orientation, View startChild, View endChild, RecyclerView.LayoutManager lm, boolean smoothScrollbarEnabled, boolean reverseLayout) argument
H A DStaggeredGridLayoutManager.java213 setReverseLayout(properties.reverseLayout);
432 * @param reverseLayout Whether layout should be in reverse or not
434 public void setReverseLayout(boolean reverseLayout) { argument
436 if (mPendingSavedState != null && mPendingSavedState.mReverseLayout != reverseLayout) {
437 mPendingSavedState.mReverseLayout = reverseLayout;
439 mReverseLayout = reverseLayout;
2201 void cacheReferenceLineAndClear(boolean reverseLayout, int offset) { argument
2203 if (reverseLayout) {
2212 if ((reverseLayout && reference < mPrimaryOrientation.getEndAfterPadding()) ||
2213 (!reverseLayout
[all...]
H A DLinearLayoutManager.java152 * @param reverseLayout When set to true, layouts from end to start.
154 public LinearLayoutManager(Context context, int orientation, boolean reverseLayout) { argument
156 setReverseLayout(reverseLayout);
171 setReverseLayout(properties.reverseLayout);
371 public void setReverseLayout(boolean reverseLayout) { argument
373 if (reverseLayout == mReverseLayout) {
376 mReverseLayout = reverseLayout;
586 // TODO we can probably avoid this if neither stackFromEnd/reverseLayout/RTL values have
H A DGridLayoutManager.java97 * @param reverseLayout When set to true, layouts from end to start.
100 boolean reverseLayout) {
101 super(context, orientation, reverseLayout);
99 GridLayoutManager(Context context, int spanCount, int orientation, boolean reverseLayout) argument
H A DRecyclerView.java7910 properties.reverseLayout = a.getBoolean(R.styleable.RecyclerView_reverseLayout, false);
7925 public boolean reverseLayout; field in class:RecyclerView.LayoutManager.Properties
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DGridLayoutManagerTest.java60 for (boolean reverseLayout : new boolean[]{false, true}) {
62 mBaseVariations.add(new Config(spanCount, orientation, reverseLayout));
343 for (boolean reverseLayout : new boolean[]{false, true}) {
345 Config config = new Config(spanCounts[i], orientation, reverseLayout);
587 new Config(3, 0).orientation(VERTICAL).reverseLayout(false), 100, 0);
592 new Config(3, 0).orientation(VERTICAL).reverseLayout(true), 100,
598 new Config(3, 0).orientation(HORIZONTAL).reverseLayout(
604 new Config(3, 0).orientation(HORIZONTAL).reverseLayout(true),
980 boolean reverseLayout) {
981 super(context, spanCount, orientation, reverseLayout);
979 WrappedGridLayoutManager(Context context, int spanCount, int orientation, boolean reverseLayout) argument
1052 Config(int spanCount, int orientation, boolean reverseLayout) argument
1073 reverseLayout(boolean reverseLayout) argument
[all...]
H A DLinearLayoutManagerTest.java69 for (boolean reverseLayout : new boolean[]{false, true}) {
71 mBaseVariations.add(new Config(orientation, reverseLayout, stackFromBottom));
111 new Config().orientation(VERTICAL).stackFromBottom(false).reverseLayout(
117 new Config().orientation(VERTICAL).stackFromBottom(false).reverseLayout(true), 100,
123 new Config().orientation(VERTICAL).stackFromBottom(true).reverseLayout(false), 100,
129 new Config().orientation(VERTICAL).stackFromBottom(true).reverseLayout(true), 100,
135 new Config().orientation(HORIZONTAL).stackFromBottom(false).reverseLayout(
141 new Config().orientation(HORIZONTAL).stackFromBottom(false).reverseLayout(true),
147 new Config().orientation(HORIZONTAL).stackFromBottom(true).reverseLayout(false),
153 new Config().orientation(HORIZONTAL).stackFromBottom(true).reverseLayout(tru
1347 WrappedLinearLayoutManager(Context context, int orientation, boolean reverseLayout) argument
1567 Config(int orientation, boolean reverseLayout, boolean stackFromEnd) argument
1597 reverseLayout(boolean reverseLayout) argument
[all...]
H A DAsyncListUtilLayoutTest.java294 public WrappedLinearLayoutManager(Context context, int orientation, boolean reverseLayout) { argument
295 super(context, orientation, reverseLayout);
H A DStaggeredGridLayoutManagerTest.java69 for (boolean reverseLayout : new boolean[]{false, true}) {
73 mBaseVariations.add(new Config(orientation, reverseLayout, spanCount,
2262 Config(int orientation, boolean reverseLayout, int spanCount, int gapStrategy) { argument
2264 mReverseLayout = reverseLayout;
2278 Config reverseLayout(boolean reverseLayout) { argument
2279 mReverseLayout = reverseLayout;

Completed in 147 milliseconds