OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mRv
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsFastScrollHelper.java
34
private AllAppsRecyclerView
mRv
;
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
.postOnAnimation(mSmoothSnapNextFrameRunnable)
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
BaseRecyclerViewFastScrollPopup.java
35
private BaseRecyclerView
mRv
;
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
.invalidate(mBgBounds)
[
all
...]
BaseRecyclerViewFastScrollBar.java
47
@Thunk BaseRecyclerView
mRv
;
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
.getParent().requestDisallowInterceptTouchEvent(true)
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
RecentsViewTouchHandler.java
68
private RecentsView
mRv
;
91
mRv
= rv;
98
SystemServicesProxy.getInstance(
mRv
.getContext()).getStableInsets(insets);
99
mDividerSnapAlgorithm = DividerSnapAlgorithm.create(
mRv
.getContext(), insets);
113
boolean isLandscape =
mRv
.getResources().getConfiguration().orientation ==
146
mRv
.getParent().requestDisallowInterceptTouchEvent(true);
155
mRv
.getLocationInWindow(recentsViewLocation);
166
Recents.logDockAttempt(
mRv
.getContext(), event.task.getTopComponent(),
175
dockState.update(
mRv
.getContext());
222
int width =
mRv
.getMeasuredWidth()
[
all
...]
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationFastScroller.java
81
private final RecyclerView
mRv
;
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
.computeVerticalScrollExtent()
[
all
...]
Completed in 131 milliseconds