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.java442 final int firstChildPos = getPosition(getChildAt(0)); in computeScrollVectorForPosition() local
443 final int direction = targetPosition < firstChildPos != mShouldReverseLayout ? -1 : 1; in computeScrollVectorForPosition()
675 final int firstChildPos = getPosition(getChildAt(0)); in layoutForPredictiveAnimations() local
682 final int direction = position < firstChildPos != mShouldReverseLayout in layoutForPredictiveAnimations()
DStaggeredGridLayoutManager.java1994 final int firstChildPos = getFirstChildPosition();
1995 return position < firstChildPos != mShouldReverseLayout ? LAYOUT_START : LAYOUT_END;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DGridLayoutManager.java2292 final int firstChildPos = getPosition(getChildAt(0));
2295 final boolean isStart = mReverseFlowPrimary ? targetPosition > firstChildPos
2296 : targetPosition < firstChildPos;