Home
last modified time | relevance | path

Searched refs:mDetectFastMoveSpeedThreshold (Results 1 – 2 of 2) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DGestureStrokeRecognitionParams.java43 public final float mDetectFastMoveSpeedThreshold; // keyWidth/sec field in GestureStrokeRecognitionParams
65 mDetectFastMoveSpeedThreshold = 1.5f; // keyWidth/sec in GestureStrokeRecognitionParams()
81 mDetectFastMoveSpeedThreshold = ResourceUtils.getFraction(mainKeyboardViewAttr, in GestureStrokeRecognitionParams()
83 DEFAULT.mDetectFastMoveSpeedThreshold); in GestureStrokeRecognitionParams()
DGestureStrokeRecognitionPoints.java52 private int mDetectFastMoveSpeedThreshold; // pixel /sec field in GestureStrokeRecognitionPoints
85 mDetectFastMoveSpeedThreshold = (int)( in setKeyboardGeometry()
86 keyWidth * mRecognitionParams.mDetectFastMoveSpeedThreshold); in setKeyboardGeometry()
247 if (!hasDetectedFastMove() && pixelsPerSec > mDetectFastMoveSpeedThreshold * msecs) { in detectFastMove()