Home
last modified time | relevance | path

Searched refs:parentBottom (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Car/libs/car-ui-lib/src/com/android/car/ui/recyclerview/decorations/linear/
DLinearDividerItemDecoration.java97 int parentBottom = parent.getHeight() - parent.getPaddingBottom() in drawHorizontalDividers() local
110 mDivider.setBounds(parentLeft, parentTop, parentRight, parentBottom); in drawHorizontalDividers()
137 int parentBottom = parentTop + mDivider.getIntrinsicHeight(); in drawVerticalDividers() local
139 mDivider.setBounds(parentLeft, parentTop, parentRight, parentBottom); in drawVerticalDividers()
DLinearOffsetItemDecoration.java159 int parentBottom = parent.getHeight() - parent.getPaddingBottom(); in drawOffsetHorizontal() local
174 mOffsetDrawable.setBounds(parentLeft, parentTop, offsetDrawableRight, parentBottom); in drawOffsetHorizontal()
/packages/apps/PermissionController/src/android/support/wearable/view/
DWearableListView.java866 final int parentBottom = getHeight() - getPaddingBottom(); in onLayoutChildren() local
940 performLayoutChildren(recycler, state, parentBottom, oldTop); in onLayoutChildren()
956 private void performLayoutChildren(Recycler recycler, State state, int parentBottom, in performLayoutChildren() argument
961 performLayoutOneChild(recycler, parentBottom); in performLayoutChildren()
964 performLayoutMultipleChildren(recycler, state, parentBottom, top); in performLayoutChildren()
973 private void performLayoutOneChild(Recycler recycler, int parentBottom) { in performLayoutOneChild() argument
978 v.layout(getPaddingLeft(), getPaddingTop(), right, parentBottom); in performLayoutOneChild() local
981 private void performLayoutMultipleChildren(Recycler recycler, State state, int parentBottom, in performLayoutMultipleChildren() argument
990 if (top >= parentBottom) { in performLayoutMultipleChildren()