HomeSort by relevance Sort by last modified time
    Searched defs:mShouldReverseLayout (Results 1 - 3 of 3) sorted by null

  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
StaggeredGridLayoutManager.java 135 boolean mShouldReverseLayout = false;
274 if (mShouldReverseLayout) {
293 int invalidGapDir = mShouldReverseLayout ? LayoutState.LAYOUT_START : LayoutState.LAYOUT_END;
347 if (mShouldReverseLayout) {
371 if (mShouldReverseLayout) {
403 if (mShouldReverseLayout) {
561 mShouldReverseLayout = mReverseLayout;
563 mShouldReverseLayout = !mReverseLayout;
628 anchorInfo.mLayoutFromEnd = mShouldReverseLayout;
654 mSpans[i].cacheReferenceLineAndClear(mShouldReverseLayout,
    [all...]
LinearLayoutManager.java 91 * @see #mShouldReverseLayout
100 boolean mShouldReverseLayout = false;
252 boolean didLayoutFromEnd = mLastStackFromEnd ^ mShouldReverseLayout;
357 mShouldReverseLayout = mReverseLayout;
359 mShouldReverseLayout = !mReverseLayout;
460 final int direction = targetPosition < firstChildPos != mShouldReverseLayout ? -1 : 1;
502 mAnchorInfo.mLayoutFromEnd = mShouldReverseLayout ^ mStackFromEnd;
552 if (mShouldReverseLayout) {
572 firstLayoutDirection = mShouldReverseLayout ? LayoutState.ITEM_DIRECTION_TAIL
575 firstLayoutDirection = mShouldReverseLayout ? LayoutState.ITEM_DIRECTION_HEA
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LinearLayoutManager.java 91 * @see #mShouldReverseLayout
100 boolean mShouldReverseLayout = false;
244 boolean didLayoutFromEnd = mLastStackFromEnd ^ mShouldReverseLayout;
345 mShouldReverseLayout = mReverseLayout;
347 mShouldReverseLayout = !mReverseLayout;
448 final int direction = targetPosition < firstChildPos != mShouldReverseLayout ? -1 : 1;
489 mAnchorInfo.mLayoutFromEnd = mShouldReverseLayout ^ mStackFromEnd;
523 if (mShouldReverseLayout) {
543 firstLayoutDirection = mShouldReverseLayout ? LayoutState.ITEM_DIRECTION_TAIL
546 firstLayoutDirection = mShouldReverseLayout ? LayoutState.ITEM_DIRECTION_HEA
    [all...]

Completed in 79 milliseconds