Home
last modified time | relevance | path

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

/packages/apps/EmergencyInfo/EmergencyGestureAction/src/com/android/emergency/widgets/countdown/
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()
DLoopingAnimationThread.java137 synchronized void setCountDownLeft(Duration timeLeft) { in setCountDownLeft() argument
138 if (timeLeft.isNegative() || timeLeft.isZero()) { in setCountDownLeft()
141 mCountDownRenderer.setCountDownLeft(timeLeft); 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.java290 int timeLeft = (int) ((endTimestamp - currentTimestamp) / 1000L); in updateCountdownSummary() local
291 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()