OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mSwipeThreshold
(Results
1 - 3
of
3
) sorted by null
/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
214
private int
mSwipeThreshold
;
354
mSwipeThreshold
= (int) (500 * getResources().getDisplayMetrics().density);
411
if (velocityX >
mSwipeThreshold
&& absY < absX && deltaX > travelX) {
418
} else if (velocityX < -
mSwipeThreshold
&& absY < absX && deltaX < -travelX) {
425
} else if (velocityY < -
mSwipeThreshold
&& absX < absY && deltaY < -travelY) {
432
} else if (velocityY >
mSwipeThreshold
&& absX < absY / 2 && deltaY > travelY) {
[
all
...]
/frameworks/base/core/java/android/widget/
StackView.java
132
private int
mSwipeThreshold
;
571
mSwipeThreshold
= Math.round(SWIPE_THRESHOLD_RATIO * newSlideAmount);
826
if (deltaY >
mSwipeThreshold
&& mSwipeGestureType == GESTURE_SLIDE_DOWN
839
} else if (deltaY < -
mSwipeThreshold
&& mSwipeGestureType == GESTURE_SLIDE_UP
[
all
...]
Completed in 349 milliseconds