HomeSort by relevance Sort by last modified time
    Searched refs:mEventTimes (Results 1 - 4 of 4) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureTrailDrawingPoints.java 44 // These three {@link ResizableIntArray}s should be synchronized by {@link #mEventTimes}.
47 private final ResizableIntArray mEventTimes = new ResizableIntArray(DEFAULT_CAPACITY);
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...]
GestureStrokeRecognitionPoints.java 39 private final ResizableIntArray mEventTimes = new ResizableIntArray(
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,
  /frameworks/base/services/core/java/com/android/server/job/
JobPackageTracker.java 45 private final long[] mEventTimes = new long[EVENT_BUFFER_SIZE];
52 mEventTimes[index] = SystemClock.elapsedRealtime();
454 TimeUtils.formatDuration(mEventTimes[index]-now, pw, TimeUtils.HUNDRED_DAY_FIELD_LEN);
  /frameworks/base/services/core/java/com/android/server/
DeviceIdleController.java 312 private final long[] mEventTimes = new long[EVENT_BUFFER_SIZE];
317 System.arraycopy(mEventTimes, 0, mEventTimes, 1, EVENT_BUFFER_SIZE - 1);
319 mEventTimes[0] = SystemClock.elapsedRealtime();
    [all...]

Completed in 211 milliseconds