OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mSwipeThreshold
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
TrackingInputHandler.java
59
private float
mSwipeThreshold
;
107
mSwipeThreshold
= 40 * density;
225
if (mTotalMotionY >
mSwipeThreshold
) {
228
} else if (mTotalMotionY < -
mSwipeThreshold
) {
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java
215
private int
mSwipeThreshold
;
372
mSwipeThreshold
= (int) (500 * getResources().getDisplayMetrics().density);
396
if (velocityX >
mSwipeThreshold
&& absY < absX && deltaX > travelX) {
403
} else if (velocityX < -
mSwipeThreshold
&& absY < absX && deltaX < -travelX) {
410
} else if (velocityY < -
mSwipeThreshold
&& absX < absY && deltaY < -travelY) {
417
} else if (velocityY >
mSwipeThreshold
&& absX < absY / 2 && deltaY > travelY) {
[
all
...]
/frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java
213
private int
mSwipeThreshold
;
371
mSwipeThreshold
= (int) (500 * getResources().getDisplayMetrics().density);
399
if (velocityX >
mSwipeThreshold
&& absY < absX && deltaX > travelX) {
406
} else if (velocityX < -
mSwipeThreshold
&& absY < absX && deltaX < -travelX) {
413
} else if (velocityY < -
mSwipeThreshold
&& absX < absY && deltaY < -travelY) {
420
} else if (velocityY >
mSwipeThreshold
&& absX < absY / 2 && deltaY > travelY) {
[
all
...]
/frameworks/base/core/java/android/widget/
StackView.java
133
private int
mSwipeThreshold
;
565
mSwipeThreshold
= Math.round(SWIPE_THRESHOLD_RATIO * newSlideAmount);
820
if (deltaY >
mSwipeThreshold
&& mSwipeGestureType == GESTURE_SLIDE_DOWN
833
} else if (deltaY < -
mSwipeThreshold
&& mSwipeGestureType == GESTURE_SLIDE_UP
[
all
...]
Completed in 201 milliseconds