Searched defs:endPosition (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DListViewCompat.java230 * @param endPosition The (inclusive) position of the last child to be
249 int endPosition, final int maxHeight,
248 measureHeightOfChildrenCompat(int widthMeasureSpec, int startPosition, int endPosition, final int maxHeight, int disallowPartialChildPosition) argument
/frameworks/base/core/java/android/widget/
H A DListView.java1229 * @param endPosition The (inclusive) position of the last child to be
1246 final int measureHeightOfChildren(int widthMeasureSpec, int startPosition, int endPosition, argument
1263 // mItemCount - 1 since endPosition parameter is inclusive
1264 endPosition = (endPosition == NO_POSITION) ? adapter.getCount() - 1 : endPosition;
1269 for (i = startPosition; i <= endPosition; ++i) {

Completed in 242 milliseconds