Home
last modified time | relevance | path

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

/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/main/java/com/android/car/ui/recyclerview/decorations/linear/
DLinearDividerItemDecoration.java103 int parentBottom = parent.getHeight() - parent.getPaddingBottom() in drawHorizontalDividers() local
117 mDivider.setBounds(parentLeft, parentTop, parentRight, parentBottom); in drawHorizontalDividers()
145 int parentBottom = parentTop + mDivider.getIntrinsicHeight(); in drawVerticalDividers() local
147 mDivider.setBounds(parentLeft, parentTop, parentRight, parentBottom); in drawVerticalDividers()
DLinearOffsetItemDecoration.java165 int parentBottom = parent.getHeight() - parent.getPaddingBottom(); in drawOffsetHorizontal() local
180 mOffsetDrawable.setBounds(parentLeft, parentTop, offsetDrawableRight, parentBottom); in drawOffsetHorizontal()
/packages/modules/Permission/PermissionController/src/android/support/wearable/view/
DWearableListView.java867 final int parentBottom = getHeight() - getPaddingBottom(); in onLayoutChildren() local
941 performLayoutChildren(recycler, state, parentBottom, oldTop); in onLayoutChildren()
957 private void performLayoutChildren(Recycler recycler, State state, int parentBottom, in performLayoutChildren() argument
962 performLayoutOneChild(recycler, parentBottom); in performLayoutChildren()
965 performLayoutMultipleChildren(recycler, state, parentBottom, top); in performLayoutChildren()
974 private void performLayoutOneChild(Recycler recycler, int parentBottom) { in performLayoutOneChild() argument
979 v.layout(getPaddingLeft(), getPaddingTop(), right, parentBottom); in performLayoutOneChild() local
982 private void performLayoutMultipleChildren(Recycler recycler, State state, int parentBottom, in performLayoutMultipleChildren() argument
991 if (top >= parentBottom) { in performLayoutMultipleChildren()