Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DAbsListView.java1539 int firstPos = mFirstPosition; in onSaveInstanceState() local
1540 if (firstPos >= mItemCount) { in onSaveInstanceState()
1541 firstPos = mItemCount - 1; in onSaveInstanceState()
1543 ss.position = firstPos; in onSaveInstanceState()
1544 ss.firstId = mAdapter.getItemId(firstPos); in onSaveInstanceState()
3908 final int firstPos = mFirstPosition;
3909 final int lastPos = firstPos + getChildCount() - 1;
3912 if (position <= firstPos) {
3913 viewTravelCount = firstPos - position + 1;
3943 final int firstPos = mFirstPosition; in start() local
[all …]