HomeSort by relevance Sort by last modified time
    Searched defs:hundreds (Results 1 - 5 of 5) sorted by null

  /developers/build/prebuilts/gradle/Timer/Wearable/src/main/java/com/example/android/wearable/timer/util/
TimerFormat.java 55 long hundreds = (time - seconds * 1000) / 10; local
71 if (!neg && hundreds != 0) {
  /developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/wearable/timer/util/
TimerFormat.java 55 long hundreds = (time - seconds * 1000) / 10; local
71 if (!neg && hundreds != 0) {
  /development/samples/browseable/Timer/src/com.example.android.wearable.timer/util/
TimerFormat.java 55 long hundreds = (time - seconds * 1000) / 10; local
71 if (!neg && hundreds != 0) {
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
Stopwatches.java 103 * @param time - in hundreds of a second since the stopwatch started
120 long hundreds, seconds, minutes, hours; local
122 hundreds = (time - seconds * 1000) / 10;
139 seconds, hundreds, decimalSeparator, lap);
144 * @param time - in hundreds of a second since the stopwatch started
150 long hundreds, seconds, minutes, hours; local
152 hundreds = (time - seconds * 1000) / 10;
158 return String.format(format, hours, minutes, seconds, hundreds, decimalSeparator);
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
CountingTimerView.java 331 long hundreds, seconds, minutes, hours; local
333 hundreds = (time - seconds * 1000) / 10;
351 if (!neg && hundreds != 0) {
362 if (hundreds < 10 || hundreds > 90) {
392 mHundredths = String.format(TWO_DIGITS, hundreds);

Completed in 672 milliseconds