Lines Matching defs:mLayoutState

133     private final LayoutState mLayoutState;
234 mLayoutState = new LayoutState();
249 mLayoutState = new LayoutState();
663 mLayoutState.mRecycle = false;
670 fill(recycler, mLayoutState, state);
673 mLayoutState.mCurrentPosition = anchorInfo.mPosition + mLayoutState.mItemDirection;
674 fill(recycler, mLayoutState, state);
678 fill(recycler, mLayoutState, state);
681 mLayoutState.mCurrentPosition = anchorInfo.mPosition + mLayoutState.mItemDirection;
682 fill(recycler, mLayoutState, state);
1409 mLayoutState.mAvailable = 0;
1410 mLayoutState.mCurrentPosition = anchorPosition;
1427 mLayoutState.mStartLine = mPrimaryOrientation.getStartAfterPadding() - startExtra;
1428 mLayoutState.mEndLine = mPrimaryOrientation.getEndAfterPadding() + endExtra;
1430 mLayoutState.mEndLine = mPrimaryOrientation.getEnd() + endExtra;
1431 mLayoutState.mStartLine = -startExtra;
1433 mLayoutState.mStopInFocusable = false;
1434 mLayoutState.mRecycle = true;
1435 mLayoutState.mInfinite = mPrimaryOrientation.getMode() == View.MeasureSpec.UNSPECIFIED &&
1440 mLayoutState.mLayoutDirection = direction;
1441 mLayoutState.mItemDirection = (mShouldReverseLayout == (direction == LAYOUT_START)) ?
1541 if (mLayoutState.mInfinite) {
1567 && (mLayoutState.mInfinite || !mRemainingSpans.isEmpty())) {
1664 updateAllRemainingSpans(mLayoutState.mLayoutDirection, targetLine);
1666 updateRemainingSpans(currentSpan, mLayoutState.mLayoutDirection, targetLine);
1668 recycle(recycler, mLayoutState);
1669 if (mLayoutState.mStopInFocusable && view.isFocusable()) {
1679 recycle(recycler, mLayoutState);
1682 if (mLayoutState.mLayoutDirection == LAYOUT_START) {
2083 while (count < mSpanCount && mLayoutState.hasMore(state) && remainingSpan > 0) {
2084 final int pos = mLayoutState.mCurrentPosition;
2087 mLayoutState.mCurrentPosition += mLayoutState.mItemDirection;
2103 mLayoutState.mRecycle = true;
2106 mLayoutState.mCurrentPosition = referenceChildPosition + mLayoutState.mItemDirection;
2108 mLayoutState.mAvailable = absDt;
2117 int consumed = fill(recycler, mLayoutState, state);
2118 final int available = mLayoutState.mAvailable;
2134 mLayoutState.mAvailable = 0;
2135 recycle(recycler, mLayoutState);
2247 mLayoutState.mCurrentPosition = referenceChildPosition + mLayoutState.mItemDirection;
2248 mLayoutState.mAvailable = (int) (MAX_SCROLL_FACTOR * mPrimaryOrientation.getTotalSpace());
2249 mLayoutState.mStopInFocusable = true;
2250 mLayoutState.mRecycle = false;
2251 fill(recycler, mLayoutState, state);