Searched refs:mRv (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/allapps/
H A DAllAppsFastScrollHelper.java34 private AllAppsRecyclerView mRv; field in class:AllAppsFastScrollHelper
64 mRv.scrollBy(0, mFastScrollFrames[mFastScrollFrameIndex]);
66 mRv.postOnAnimation(mSmoothSnapNextFrameRunnable);
86 mRv = rv;
115 mRv.removeCallbacks(mSmoothSnapNextFrameRunnable);
116 mRv.removeCallbacks(mFastScrollToTargetSectionRunnable);
139 mRv.postDelayed(mFastScrollToTargetSectionRunnable,
148 mRv.getPaddingTop() + mRv.getTop(info.fastScrollToItem.rowIndex));
155 mRv
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DBaseRecyclerViewFastScrollPopup.java35 private BaseRecyclerView mRv; field in class:BaseRecyclerViewFastScrollPopup
54 mRv = rv;
85 int edgePadding = mRv.getMaxScrollbarWidth();
90 mBgBounds.left = mRv.getBackgroundPadding().left + (2 * mRv.getMaxScrollbarWidth());
93 mBgBounds.right = mRv.getWidth() - mRv.getBackgroundPadding().right -
94 (2 * mRv.getMaxScrollbarWidth());
99 Math.min(mBgBounds.top, mRv.getHeight() - edgePadding - bgHeight));
128 mRv
[all...]
H A DBaseRecyclerViewFastScrollBar.java47 @Thunk BaseRecyclerView mRv; field in class:BaseRecyclerViewFastScrollBar
80 mRv = rv;
117 mRv.invalidate(mInvalidateRect);
132 mRv.invalidate(mInvalidateRect);
142 mRv.getHeight());
146 mRv.getHeight());
147 mRv.invalidate(mInvalidateRect);
179 ViewConfiguration config = ViewConfiguration.get(mRv.getContext());
193 if (!mIsDragging && !mIgnoreDragGesture && mRv.supportsFastScrolling() &&
196 mRv
[all...]
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DConversationFastScroller.java81 private final RecyclerView mRv; field in class:ConversationFastScroller
124 mRv = rv;
125 mRv.addOnLayoutChangeListener(this);
126 mRv.addOnScrollListener(this);
127 mRv.addOnItemTouchListener(this);
128 mRv.getAdapter().registerAdapterDataObserver(new AdapterDataObserver() {
198 final int range = mRv.computeVerticalScrollRange();
199 final int extent = mRv.computeVerticalScrollExtent();
298 final int range = mRv.computeVerticalScrollRange();
299 final int extent = mRv
[all...]

Completed in 75 milliseconds