Home
last modified time | relevance | path

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

/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DDirectoryAddonsAdapter.java232 int topOffset = mHeaderMessage.shouldShow() ? 1 : 0;
233 return (mBreakPosition != -1 && p > mBreakPosition) ? p - 1 - topOffset : p - topOffset;
244 int topOffset = mHeaderMessage.shouldShow() ? 1 : 0;
246 p += topOffset;
/packages/apps/Car/libs/car-ui-lib/src/com/android/car/ui/recyclerview/
DCarUiRecyclerView.java200 int topOffset = a.getInteger(R.styleable.CarUiRecyclerView_topOffset, /* defValue= */0); in init() local
209 new LinearOffsetItemDecoration(topOffset, OffsetPosition.START); in init()
224 new GridOffsetItemDecoration(topOffset, mNumOfColumns, in init()
/packages/apps/Car/Notification/src/com/android/car/notification/
DCarNotificationView.java155 private TopAndBottomOffsetDecoration(int topOffset) { in TopAndBottomOffsetDecoration() argument
156 mTopAndBottomOffset = topOffset; in TopAndBottomOffsetDecoration()