Searched refs:childrenTop (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | GridView.java | 475 private View fillSelection(int childrenTop, int childrenBottom) { in fillSelection() argument 493 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart); in fillSelection() 511 pinToTop(childrenTop); in fillSelection() 519 private void pinToTop(int childrenTop) { in pinToTop() argument 522 final int offset = childrenTop - top; in pinToTop() 727 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { in fillFromSelection() argument 748 int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart); in fillFromSelection() 801 private int getTopSelectionPixel(int childrenTop, int fadingEdgeLength, int rowStart) { in getTopSelectionPixel() argument 803 int topSelectionPixel = childrenTop; in getTopSelectionPixel() 899 private View moveSelection(int delta, int childrenTop, int childrenBottom) { in moveSelection() argument [all …]
|
D | ListView.java | 867 private View fillFromMiddle(int childrenTop, int childrenBottom) { in fillFromMiddle() argument 868 int height = childrenBottom - childrenTop; in fillFromMiddle() 872 View sel = makeAndAddView(position, childrenTop, true, in fillFromMiddle() 923 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { in fillFromSelection() argument 929 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, in fillFromSelection() 1001 private int getTopSelectionPixel(int childrenTop, int fadingEdgeLength, int selectedPosition) { in getTopSelectionPixel() argument 1003 int topSelectionPixel = childrenTop; in getTopSelectionPixel() 1047 private View moveSelection(View oldSel, View newSel, int delta, int childrenTop, in moveSelection() argument 1054 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, in moveSelection() 1056 final int bottomSelectionPixel = getBottomSelectionPixel(childrenTop, fadingEdgeLength, in moveSelection() [all …]
|
D | AbsListView.java | 5763 int childrenTop = mListPadding.top; in resurrectSelection() local 5777 if (selectedTop < childrenTop) { in resurrectSelection() 5778 selectedTop = childrenTop + getVerticalFadingEdgeLength(); in resurrectSelection() 5795 if (firstPosition > 0 || top < childrenTop) { in resurrectSelection() 5798 childrenTop += getVerticalFadingEdgeLength(); in resurrectSelection() 5801 if (top >= childrenTop) { in resurrectSelection()
|