Home
last modified time | relevance | path

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

/packages/apps/EmergencyInfo/EmergencyGestureAction/src/com/android/emergency/widgets/countdown/
DLoopingAnimationThread.java137 synchronized void setCountDownLeft(Duration timeLeft) { in setCountDownLeft() argument
138 if (timeLeft.isNegative() || timeLeft.isZero()) { in setCountDownLeft()
141 mCountDownRenderer.setCountDownLeft(timeLeft); in setCountDownLeft()
DCountDownAnimationView.java129 public void setCountDownLeft(Duration timeLeft) { in setCountDownLeft() argument
131 mLoopingAnimationThread.setCountDownLeft(timeLeft); in setCountDownLeft()
137 msgArgs.put("seconds_left", timeLeft.getSeconds()); in setCountDownLeft()
DCountDownRenderer.java153 synchronized void setCountDownLeft(Duration timeLeft) { in setCountDownLeft() argument
154 mCountDownLeft = timeLeft; in setCountDownLeft()
/packages/services/Car/tools/emulator/
Ddriving_info_generator.py170 timeLeft = duration - timeElapsed
171 self.odometerInKm += (self.speedInMps + gpxFrame.speedInMps) / 2.0 * timeLeft / 1000
173 time.sleep(timeLeft)
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothDiscoverableEnabler.java289 int timeLeft = (int) ((endTimestamp - currentTimestamp) / 1000L); in updateCountdownSummary() local
290 updateTimerDisplay(timeLeft); in updateCountdownSummary()
/packages/apps/Contacts/src/com/android/contacts/list/
DPinnedHeaderListView.java556 int timeLeft = (int)(header.targetTime - currentTime); in drawHeader() local
557 if (timeLeft <= 0) { in drawHeader()
562 header.y = header.targetY + (header.sourceY - header.targetY) * timeLeft in drawHeader()
/packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
DE2ePerformanceTest.java296 long timeLeft = timeoutMs - (SystemClock.elapsedRealtime() - start); in awaitCountDownLatches() local
297 if (!latches[i].await(timeLeft, TimeUnit.MILLISECONDS)) { in awaitCountDownLatches()