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

/frameworks/base/core/java/android/widget/
H A DGridView.java460 private View fillSelection(int childrenTop, int childrenBottom) { argument
478 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart);
496 pinToTop(childrenTop);
504 private void pinToTop(int childrenTop) { argument
507 final int offset = childrenTop - top;
708 * @param childrenTop Where to start drawing children
712 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { argument
733 int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart);
781 * @param childrenTop Top pixel were children can be drawn
786 private int getTopSelectionPixel(int childrenTop, in argument
884 moveSelection(int delta, int childrenTop, int childrenBottom) argument
[all...]
H A DListView.java855 * @param childrenTop Top of the area in which children can be drawn, as
861 private View fillFromMiddle(int childrenTop, int childrenBottom) { argument
862 int height = childrenBottom - childrenTop;
866 View sel = makeAndAddView(position, childrenTop, true,
913 * @param childrenTop Where to start drawing children
917 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { argument
923 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength,
990 * @param childrenTop Top pixel were children can be drawn
995 private int getTopSelectionPixel(int childrenTop, int fadingEdgeLength, int selectedPosition) { argument
997 int topSelectionPixel = childrenTop;
1041 moveSelection(View oldSel, View newSel, int delta, int childrenTop, int childrenBottom) argument
[all...]
H A DAbsListView.java5390 int childrenTop = mListPadding.top;
5404 if (selectedTop < childrenTop) {
5405 selectedTop = childrenTop + getVerticalFadingEdgeLength();
5422 if (firstPosition > 0 || top < childrenTop) {
5425 childrenTop += getVerticalFadingEdgeLength();
5428 if (top >= childrenTop) {

Completed in 73 milliseconds