Home
last modified time | relevance | path

Searched refs:timeLeft (Results 1 – 4 of 4) sorted by relevance

/frameworks/support/v4/tests/java/android/support/v4/view/
DViewPropertyAnimatorCompatTest.java125 int timeLeft = WAIT_TIMEOUT_MS; in waitAndCheckCallCount() local
128 timeLeft -= 20; in waitAndCheckCallCount()
129 assertTrue(timeLeft > 0); in waitAndCheckCallCount()
/frameworks/native/cmds/atrace/
Datrace.cpp1135 struct timespec timeLeft; in main() local
1136 timeLeft.tv_sec = g_traceDurationSeconds; in main()
1137 timeLeft.tv_nsec = 0; in main()
1142 } while (nanosleep(&timeLeft, &timeLeft) == -1 && errno == EINTR); in main()
/frameworks/base/core/java/android/animation/
DValueAnimator.java1107 long timeLeft = getScaledDuration() - currentPlayTime; in reverse() local
1108 mStartTime = currentTime - timeLeft; in reverse()
/frameworks/base/services/usage/java/com/android/server/usage/
DUsageStatsService.java402 long timeLeft = (mLastAppIdleParoledTime + mAppIdleParoleIntervalMillis) in postNextParoleTimeout() local
404 if (timeLeft < 0) { in postNextParoleTimeout()
405 timeLeft = 0; in postNextParoleTimeout()
407 mHandler.sendEmptyMessageDelayed(MSG_CHECK_PAROLE_TIMEOUT, timeLeft); in postNextParoleTimeout()