Home
last modified time | relevance | path

Searched refs:firstChildPos (Results 1 – 3 of 3) sorted by relevance

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DLinearLayoutManager.java441 final int firstChildPos = getPosition(getChildAt(0)); in computeScrollVectorForPosition() local
442 final int direction = targetPosition < firstChildPos != mShouldReverseLayout ? -1 : 1; in computeScrollVectorForPosition()
651 final int firstChildPos = getPosition(getChildAt(0)); in layoutForPredictiveAnimations() local
658 final int direction = position < firstChildPos != mShouldReverseLayout in layoutForPredictiveAnimations()
DStaggeredGridLayoutManager.java1853 final int firstChildPos = getFirstChildPosition();
1854 return position < firstChildPos != mShouldReverseLayout ? LAYOUT_START : LAYOUT_END;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DGridLayoutManager.java2142 final int firstChildPos = getPosition(getChildAt(0));
2145 final boolean isStart = mReverseFlowPrimary ? targetPosition > firstChildPos
2146 : targetPosition < firstChildPos;