Searched refs:childrenTop (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | GridView.java | 455 private View fillSelection(int childrenTop, int childrenBottom) { in fillSelection() argument 473 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart); in fillSelection() 491 pinToTop(childrenTop); in fillSelection() 499 private void pinToTop(int childrenTop) { in pinToTop() argument 502 final int offset = childrenTop - top; in pinToTop() 707 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { in fillFromSelection() argument 728 int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart); in fillFromSelection() 781 private int getTopSelectionPixel(int childrenTop, int fadingEdgeLength, int rowStart) { in getTopSelectionPixel() argument 783 int topSelectionPixel = childrenTop; in getTopSelectionPixel() 879 private View moveSelection(int delta, int childrenTop, int childrenBottom) { in moveSelection() argument [all …]
|
D | ListView.java | 777 private View fillFromMiddle(int childrenTop, int childrenBottom) { in fillFromMiddle() argument 778 int height = childrenBottom - childrenTop; in fillFromMiddle() 782 View sel = makeAndAddView(position, childrenTop, true, in fillFromMiddle() 833 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { in fillFromSelection() argument 839 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, in fillFromSelection() 911 private int getTopSelectionPixel(int childrenTop, int fadingEdgeLength, int selectedPosition) { in getTopSelectionPixel() argument 913 int topSelectionPixel = childrenTop; in getTopSelectionPixel() 957 private View moveSelection(View oldSel, View newSel, int delta, int childrenTop, in moveSelection() argument 964 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, in moveSelection() 966 final int bottomSelectionPixel = getBottomSelectionPixel(childrenTop, fadingEdgeLength, in moveSelection() [all …]
|
D | AbsListView.java | 5179 int childrenTop = mListPadding.top; in resurrectSelection() local 5193 if (selectedTop < childrenTop) { in resurrectSelection() 5194 selectedTop = childrenTop + getVerticalFadingEdgeLength(); in resurrectSelection() 5211 if (firstPosition > 0 || top < childrenTop) { in resurrectSelection() 5214 childrenTop += getVerticalFadingEdgeLength(); in resurrectSelection() 5217 if (top >= childrenTop) { in resurrectSelection()
|