Searched refs:timeLeft (Results 1 - 5 of 5) sorted by relevance

/frameworks/support/compat/tests/java/android/support/v4/view/
H A DViewPropertyAnimatorCompatTest.java124 int timeLeft = WAIT_TIMEOUT_MS;
127 timeLeft -= 20;
128 assertTrue(timeLeft > 0);
/frameworks/base/packages/PrintSpooler/tests/outofprocess/src/com/android/printspooler/outofprocess/tests/
H A DWorkflowTest.java95 long timeLeft = OPERATION_TIMEOUT - (System.currentTimeMillis() - startTime);
96 if (timeLeft < 0) {
100 waiter.accept(timeLeft);
/frameworks/native/cmds/atrace/
H A Datrace.cpp1213 struct timespec timeLeft; local
1214 timeLeft.tv_sec = g_traceDurationSeconds;
1215 timeLeft.tv_nsec = 0;
1220 } while (nanosleep(&timeLeft, &timeLeft) == -1 && errno == EINTR);
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java1161 long timeLeft = getScaledDuration() - currentPlayTime;
1162 mStartTime = currentTime - timeLeft;
/frameworks/base/services/usage/java/com/android/server/usage/
H A DUsageStatsService.java490 long timeLeft = (mLastAppIdleParoledTime + mAppIdleParoleIntervalMillis) - now;
491 if (timeLeft < 0) {
492 timeLeft = 0;
494 mHandler.sendEmptyMessageDelayed(MSG_CHECK_PAROLE_TIMEOUT, timeLeft);

Completed in 2685 milliseconds