Home
last modified time | relevance | path

Searched refs:NANOS_PER_MS (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/services/core/java/com/android/server/policy/
DWindowOrientationListener.java233 protected static final long NANOS_PER_MS = 1000000; field in WindowOrientationListener.OrientationJudge
241 500 * NANOS_PER_MS;
344 private static final long PROPOSAL_SETTLE_TIME_NANOS = 40 * NANOS_PER_MS;
349 private static final long PROPOSAL_MIN_TIME_SINCE_FLAT_ENDED_NANOS = 500 * NANOS_PER_MS;
354 private static final long PROPOSAL_MIN_TIME_SINCE_SWING_ENDED_NANOS = 300 * NANOS_PER_MS;
359 500 * NANOS_PER_MS;
365 private static final long FLAT_TIME_NANOS = 1000 * NANOS_PER_MS;
371 private static final long SWING_TIME_NANOS = 300 * NANOS_PER_MS;
378 private static final long MAX_FILTER_DELTA_TIME_NANOS = 1000 * NANOS_PER_MS;
/frameworks/base/core/java/android/view/
DChoreographer.java510 return getFrameTimeNanos() / TimeUtils.NANOS_PER_MS; in getFrameTime()
551 mLastFrameTimeNanos / TimeUtils.NANOS_PER_MS + sFrameDelay, now); in scheduleFrameLocked()
642 now / TimeUtils.NANOS_PER_MS); in doCallbacks()
851 mHandler.sendMessageAtTime(msg, timestampNanos / TimeUtils.NANOS_PER_MS); in onVsync()
DViewRootImpl.java2758 mChoreographer.getFrameTimeNanos() / TimeUtils.NANOS_PER_MS; in draw()
/frameworks/base/core/java/com/android/internal/view/animation/
DFallbackLUTInterpolator.java47 int animIntervalMs = (int) (frameIntervalNanos / TimeUtils.NANOS_PER_MS); in createLUT()
/frameworks/native/libs/input/
DInputTransport.cpp45 static const nsecs_t NANOS_PER_MS = 1000000; variable
49 static const nsecs_t RESAMPLE_LATENCY = 5 * NANOS_PER_MS;
52 static const nsecs_t RESAMPLE_MIN_DELTA = 2 * NANOS_PER_MS;
56 static const nsecs_t RESAMPLE_MAX_DELTA = 20 * NANOS_PER_MS;
60 static const nsecs_t RESAMPLE_MAX_PREDICTION = 8 * NANOS_PER_MS;
DVelocityTracker.cpp38 static const nsecs_t NANOS_PER_MS = 1000000; variable
44 static const nsecs_t ASSUME_POINTER_STOPPED_TIME = 40 * NANOS_PER_MS;
758 const nsecs_t MIN_TIME_DELTA = 2 * NANOS_PER_MS; in updateState()
/frameworks/base/core/java/android/util/
DTimeUtils.java249 public static final long NANOS_PER_MS = 1000000; field in TimeUtils
/frameworks/base/services/core/java/com/android/server/wm/
DAppWindowAnimator.java347 return -Choreographer.getInstance().getFrameIntervalNanos() / TimeUtils.NANOS_PER_MS; in getStartTimeCorrection()
DWindowAnimator.java661 mCurrentTime = frameTimeNs / TimeUtils.NANOS_PER_MS; in animateLocked()
/frameworks/base/graphics/java/android/graphics/drawable/
DAnimatedVectorDrawable.java1223 int animIntervalMs = (int) (frameIntervalNanos / TimeUtils.NANOS_PER_MS); in createDataPoints()