Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/widget/picker/
DWidgetsListAdapter.java369 private OptionalInt getOffsetForPosition(OptionalInt positionOptional) { in getOffsetForPosition() argument
370 if (!positionOptional.isPresent() || mRecyclerView == null) return OptionalInt.empty(); in getOffsetForPosition()
375 View view = layoutManager.findViewByPosition(positionOptional.getAsInt()); in getOffsetForPosition()
391 OptionalInt positionOptional, in scrollToPositionAndMaintainOffset() argument
393 if (!positionOptional.isPresent() || mRecyclerView == null) return; in scrollToPositionAndMaintainOffset()
394 int position = positionOptional.getAsInt(); in scrollToPositionAndMaintainOffset()