Home | History | Annotate | Download | only in widget

Lines Matching refs:nextTop

268      * @param nextTop The location where the top of the item associated with pos
274 private View fillDown(int pos, int nextTop) {
282 while (nextTop < end && pos < mItemCount) {
283 View temp = makeRow(pos, nextTop, true);
290 nextTop = mReferenceView.getBottom() + mVerticalSpacing;
405 * @param nextTop The location where the top of the first item should be
410 private View fillFromTop(int nextTop) {
417 return fillDown(mFirstPosition, nextTop);