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

/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTitleStrip.java381 int nextTop;
387 nextTop = paddingTop + nextTopOffset;
394 nextTop = centeredTop + nextTopOffset;
400 nextTop = bottomGravTop + nextTopOffset;
413 mNextText.layout(nextLeft, nextTop, nextLeft + nextWidth,
414 nextTop + mNextText.getMeasuredHeight());
/frameworks/base/core/java/android/widget/
H A DGridView.java287 * @param nextTop The location where the top of the item associated with pos
293 private View fillDown(int pos, int nextTop) { argument
301 while (nextTop < end && pos < mItemCount) {
302 View temp = makeRow(pos, nextTop, true);
309 nextTop = mReferenceView.getBottom() + mVerticalSpacing;
425 * @param nextTop The location where the top of the first item should be
430 private View fillFromTop(int nextTop) { argument
437 return fillDown(mFirstPosition, nextTop);
H A DListView.java681 * @param nextTop The location where the top of the item associated with pos
687 private View fillDown(int pos, int nextTop) { argument
695 while (nextTop < end && pos < mItemCount) {
698 View child = makeAndAddView(pos, nextTop, true, mListPadding.left, selected);
700 nextTop = child.getBottom() + mDividerHeight;
748 * @param nextTop The location where the top of the first item should be
753 private View fillFromTop(int nextTop) { argument
759 return fillDown(mFirstPosition, nextTop);

Completed in 81 milliseconds