HomeSort by relevance Sort by last modified time
    Searched refs:reverseLayout (Results 1 - 21 of 21) sorted by null

  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BaseGridLayoutManagerTest.java 65 for (boolean reverseLayout : new boolean[]{false, true}) {
67 variations.add(new Config(spanCount, orientation, reverseLayout));
119 public Config(int spanCount, int orientation, boolean reverseLayout) {
122 mReverseLayout = reverseLayout;
140 public Config reverseLayout(boolean reverseLayout) {
141 mReverseLayout = reverseLayout;
170 boolean reverseLayout) {
171 super(context, spanCount, orientation, reverseLayout);
GridLayoutManagerCachedBordersTest.java 78 for (boolean reverseLayout : new boolean[]{false, true}) {
80 Config config = new Config(spanCounts[i], orientation, reverseLayout);
LinearLayoutManagerWrapContentWithAspectRatioTest.java 61 for (boolean reverseLayout : new boolean[]{false, true}) {
66 reverseLayout, stackFromBottom),
75 reverseLayout, stackFromBottom),
85 reverseLayout, stackFromBottom),
95 reverseLayout, stackFromBottom),
LinearLayoutManagerWrapContentTest.java 123 for (boolean reverseLayout : new boolean[]{false, true}) {
127 new Config(orientation, reverseLayout, stackFromBottom),
133 new Config(orientation, reverseLayout, stackFromBottom),
BaseLinearLayoutManagerTest.java 55 for (boolean reverseLayout : new boolean[]{false, true}) {
59 new Config(orientation, reverseLayout, stackFromBottom).wrap(wrap));
290 Config(int orientation, boolean reverseLayout, boolean stackFromEnd) {
292 mReverseLayout = reverseLayout;
320 Config reverseLayout(boolean reverseLayout) {
321 mReverseLayout = reverseLayout;
377 public WrappedLinearLayoutManager(Context context, int orientation, boolean reverseLayout) {
378 super(context, orientation, reverseLayout);
LinearLayoutManagerTest.java 108 setupByConfig(new Config(VERTICAL, false, false).adapter(adapter).reverseLayout(true),
279 setupByConfig(new Config(HORIZONTAL, false, false).adapter(adapter).reverseLayout(true),
516 new Config().orientation(VERTICAL).stackFromBottom(false).reverseLayout(
523 new Config().orientation(VERTICAL).stackFromBottom(false).reverseLayout(true), 100,
530 new Config().orientation(VERTICAL).stackFromBottom(true).reverseLayout(false), 100,
537 new Config().orientation(VERTICAL).stackFromBottom(true).reverseLayout(true), 100,
544 new Config().orientation(HORIZONTAL).stackFromBottom(false).reverseLayout(
551 new Config().orientation(HORIZONTAL).stackFromBottom(false).reverseLayout(true),
558 new Config().orientation(HORIZONTAL).stackFromBottom(true).reverseLayout(false),
565 new Config().orientation(HORIZONTAL).stackFromBottom(true).reverseLayout(true), 100
    [all...]
GridLayoutManagerTest.java 79 private void scrollToBadOffset(boolean reverseLayout) throws Throwable {
82 RecyclerView recyclerView = setupBasic(new Config(2, 100).reverseLayout(reverseLayout),
122 final RecyclerView recyclerView = setupBasic(new Config(3, 31).reverseLayout(!scrollDown)
183 .reverseLayout(true),
273 .reverseLayout(false),
363 .orientation(HORIZONTAL).reverseLayout(true),
453 .orientation(HORIZONTAL).reverseLayout(false),
    [all...]
BaseStaggeredGridLayoutManagerTest.java 52 for (boolean reverseLayout : new boolean[]{false, true}) {
57 variations.add(new Config(orientation, reverseLayout, spanCount,
406 Config(int orientation, boolean reverseLayout, int spanCount, int gapStrategy) {
408 mReverseLayout = reverseLayout;
422 Config reverseLayout(boolean reverseLayout) {
423 mReverseLayout = reverseLayout;
    [all...]
AsyncListUtilLayoutTest.java 316 public WrappedLinearLayoutManager(Context context, int orientation, boolean reverseLayout) {
317 super(context, orientation, reverseLayout);
GridLayoutManagerWrapContentWithAspectRatioTest.java 53 for (boolean reverseLayout : new boolean[]{false, true}) {
59 new Config(3, orientation, reverseLayout),
  /frameworks/base/core/java/com/android/internal/widget/
ScrollbarHelper.java 32 boolean smoothScrollbarEnabled, boolean reverseLayout) {
41 final int itemsBefore = reverseLayout
LinearLayoutManager.java 160 * @param reverseLayout When set to true, layouts from end to start.
162 public LinearLayoutManager(Context context, int orientation, boolean reverseLayout) {
164 setReverseLayout(reverseLayout);
180 setReverseLayout(properties.reverseLayout);
379 public void setReverseLayout(boolean reverseLayout) {
381 if (reverseLayout == mReverseLayout) {
384 mReverseLayout = reverseLayout;
611 // TODO we can probably avoid this if neither stackFromEnd/reverseLayout/RTL values have
    [all...]
RecyclerView.java     [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
ScrollbarHelper.java 31 boolean smoothScrollbarEnabled, boolean reverseLayout) {
40 final int itemsBefore = reverseLayout
PagerSnapHelper.java 107 boolean reverseLayout = false;
113 reverseLayout = vectorForEnd.x < 0 || vectorForEnd.y < 0;
116 return reverseLayout
StaggeredGridLayoutManager.java 236 setReverseLayout(properties.reverseLayout);
472 * @param reverseLayout Whether layout should be in reverse or not
474 public void setReverseLayout(boolean reverseLayout) {
476 if (mPendingSavedState != null && mPendingSavedState.mReverseLayout != reverseLayout) {
477 mPendingSavedState.mReverseLayout = reverseLayout;
479 mReverseLayout = reverseLayout;
    [all...]
LinearLayoutManager.java 164 * @param reverseLayout When set to true, layouts from end to start.
166 public LinearLayoutManager(Context context, int orientation, boolean reverseLayout) {
168 setReverseLayout(reverseLayout);
184 setReverseLayout(properties.reverseLayout);
383 public void setReverseLayout(boolean reverseLayout) {
385 if (reverseLayout == mReverseLayout) {
388 mReverseLayout = reverseLayout;
615 // TODO we can probably avoid this if neither stackFromEnd/reverseLayout/RTL values have
    [all...]
GridLayoutManager.java 92 * @param reverseLayout When set to true, layouts from end to start.
95 boolean reverseLayout) {
96 super(context, orientation, reverseLayout);
    [all...]
RecyclerView.java     [all...]
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 
  /prebuilts/misc/common/android-support-test/espresso/
espresso-contrib-2.3-beta-2-release.jar 

Completed in 187 milliseconds