Searched refs:mEventTimes (Results 1 - 2 of 2) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DGestureTrailDrawingPoints.java44 // These three {@link ResizableIntArray}s should be synchronized by {@link #mEventTimes}.
47 private final ResizableIntArray mEventTimes = new ResizableIntArray(DEFAULT_CAPACITY); field in class:GestureTrailDrawingPoints
51 // The wall time of the zero value in {@link #mEventTimes}
73 synchronized (mEventTimes) {
79 final int trailSize = mEventTimes.getLength();
80 stroke.appendPreviewStroke(mEventTimes, mXCoordinates, mYCoordinates, mPointTypes);
81 if (mEventTimes.getLength() == trailSize) {
84 final int[] eventTimes = mEventTimes.getPrimitiveArray();
97 lastInterpolatedIndex, mEventTimes, mXCoordinates, mYCoordinates, mPointTypes);
159 synchronized (mEventTimes) {
[all...]
H A DGestureStrokeRecognitionPoints.java39 private final ResizableIntArray mEventTimes = new ResizableIntArray( field in class:GestureStrokeRecognitionPoints
108 return mEventTimes.getLength();
158 final int deltaTime = mEventTimes.get(lastIndex) - mDetectFastMoveTime;
198 mEventTimes.setLength(0);
211 if (lastIndex >= 0 && mEventTimes.get(lastIndex) > time) {
214 mEventTimes.get(lastIndex)));
217 mEventTimes.add(time);
238 final int msecs = time - mEventTimes.get(lastIndex);
326 out.append(mPointerId, mEventTimes, mXCoordinates, mYCoordinates,

Completed in 72 milliseconds