Searched defs:deltaTime (Results 1 - 2 of 2) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DGestureStrokeRecognitionPoints.java127 private int getGestureDynamicDistanceThreshold(final int deltaTime) { argument
128 if (!mAfterFastTyping || deltaTime >= mRecognitionParams.mDynamicThresholdDecayDuration) {
133 * deltaTime / mRecognitionParams.mDynamicThresholdDecayDuration;
137 private int getGestureDynamicTimeThreshold(final int deltaTime) { argument
138 if (!mAfterFastTyping || deltaTime >= mRecognitionParams.mDynamicThresholdDecayDuration) {
144 * deltaTime / mRecognitionParams.mDynamicThresholdDecayDuration;
158 final int deltaTime = mEventTimes.get(lastIndex) - mDetectFastMoveTime;
159 if (deltaTime < 0) {
165 final int distanceThreshold = getGestureDynamicDistanceThreshold(deltaTime);
166 final int timeThreshold = getGestureDynamicTimeThreshold(deltaTime);
[all...]
/packages/apps/Nfc/src/com/android/nfc/beam/
H A DSendUi.java693 public void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime) { argument

Completed in 52 milliseconds