Searched refs:nextTop (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/viewpager/src/main/java/androidx/viewpager/widget/
H A DPagerTitleStrip.java379 int nextTop;
385 nextTop = paddingTop + nextTopOffset;
392 nextTop = centeredTop + nextTopOffset;
398 nextTop = bottomGravTop + nextTopOffset;
411 mNextText.layout(nextLeft, nextTop, nextLeft + nextWidth,
412 nextTop + mNextText.getMeasuredHeight());
/frameworks/base/core/java/android/widget/
H A DGridView.java297 * @param nextTop The location where the top of the item associated with pos
303 private View fillDown(int pos, int nextTop) { argument
311 while (nextTop < end && pos < mItemCount) {
312 View temp = makeRow(pos, nextTop, true);
319 nextTop = mReferenceView.getBottom() + mVerticalSpacing;
435 * @param nextTop The location where the top of the first item should be
440 private View fillFromTop(int nextTop) { argument
447 return fillDown(mFirstPosition, nextTop);
H A DListView.java769 * @param nextTop The location where the top of the item associated with pos
775 private View fillDown(int pos, int nextTop) { argument
783 while (nextTop < end && pos < mItemCount) {
786 View child = makeAndAddView(pos, nextTop, true, mListPadding.left, selected);
788 nextTop = child.getBottom() + mDividerHeight;
836 * @param nextTop The location where the top of the first item should be
841 private View fillFromTop(int nextTop) { argument
847 return fillDown(mFirstPosition, nextTop);

Completed in 137 milliseconds