OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getScaledMaximumFlingVelocity
(Results
1 - 25
of
44
) sorted by null
1
2
/external/chromium_org/ui/android/java/src/org/chromium/ui/gfx/
ViewConfigurationHelper.java
60
getScaledMaximumFlingVelocity
(),
89
private int
getScaledMaximumFlingVelocity
() {
90
return mViewConfiguration.
getScaledMaximumFlingVelocity
();
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ViewConfigurationTest.java
50
assertEquals(4000, viewConfiguration.
getScaledMaximumFlingVelocity
());
67
assertEquals(6000, viewConfiguration.
getScaledMaximumFlingVelocity
());
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowViewConfiguration.java
206
public int
getScaledMaximumFlingVelocity
() {
/frameworks/base/core/java/android/view/
ViewConfiguration.java
636
* @deprecated Use {@link #
getScaledMaximumFlingVelocity
()} instead.
646
public int
getScaledMaximumFlingVelocity
() {
GestureDetector.java
404
mMaximumFlingVelocity = configuration.
getScaledMaximumFlingVelocity
();
/frameworks/base/core/java/com/android/internal/widget/
SwipeDismissLayout.java
100
mMaxFlingVelocity = vc.
getScaledMaximumFlingVelocity
();
RotarySelector.java
211
mMaximumVelocity = configuration.
getScaledMaximumFlingVelocity
();
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewTouchHandler.java
61
mMaximumVelocity = configuration.
getScaledMaximumFlingVelocity
();
/frameworks/support/v4/java/android/support/v4/view/
GestureDetectorCompat.java
178
mMaximumFlingVelocity = configuration.
getScaledMaximumFlingVelocity
();
/packages/apps/Launcher2/src/com/android/launcher2/
DeleteDropTarget.java
276
float vp = Math.min(1f, velocity / (config.
getScaledMaximumFlingVelocity
() / 2f));
DragController.java
627
mVelocityTracker.computeCurrentVelocity(1000, config.
getScaledMaximumFlingVelocity
());
/packages/apps/Calendar/src/com/android/calendar/month/
MonthByWeekFragment.java
242
mMinimumTwoMonthFlingVelocity = viewConfig.
getScaledMaximumFlingVelocity
() / 2;
/packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java
107
mMaximumVelocity = vc.
getScaledMaximumFlingVelocity
();
/packages/apps/Launcher3/src/com/android/launcher3/
DeleteDropTarget.java
390
float vp = Math.min(1f, velocity / (config.
getScaledMaximumFlingVelocity
() / 2f));
DragController.java
624
mVelocityTracker.computeCurrentVelocity(1000, config.
getScaledMaximumFlingVelocity
());
PagedView.java
308
mMaximumVelocity = configuration.
getScaledMaximumFlingVelocity
();
[
all
...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
RecyclerViewLayoutTest.java
142
+ (vc.
getScaledMaximumFlingVelocity
() - vc.getScaledMinimumFlingVelocity()) * .1f;
175
+ (vc.
getScaledMaximumFlingVelocity
() - vc.getScaledMinimumFlingVelocity()) * .8f;
[
all
...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
SlidingChallengeLayout.java
243
mMaxVelocity = vc.
getScaledMaximumFlingVelocity
();
[
all
...]
PagedView.java
311
mMaximumVelocity = configuration.
getScaledMaximumFlingVelocity
();
[
all
...]
/frameworks/support/v4/java/android/support/v4/widget/
ViewDragHelper.java
389
mMaxVelocity = vc.
getScaledMaximumFlingVelocity
();
[
all
...]
/packages/apps/Dialer/src/com/android/dialer/widget/
ViewDragHelper.java
395
mMaxVelocity = vc.
getScaledMaximumFlingVelocity
();
[
all
...]
/frameworks/base/core/java/android/widget/
HorizontalScrollView.java
213
mMaximumVelocity = configuration.
getScaledMaximumFlingVelocity
();
[
all
...]
ScrollView.java
240
mMaximumVelocity = configuration.
getScaledMaximumFlingVelocity
();
[
all
...]
StackView.java
196
mMaximumVelocity = configuration.
getScaledMaximumFlingVelocity
();
[
all
...]
/frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java
210
mMaximumVelocity = vc.
getScaledMaximumFlingVelocity
();
[
all
...]
Completed in 1264 milliseconds
1
2