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

  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
Stopwatches.java 107 * @param time - in hundreds of a second since the stopwatch started
124 long hundreds, seconds, minutes, hours; local
126 hundreds = (time - seconds * 1000) / 10;
143 seconds, hundreds, decimalSeparator, lap);
148 * @param time - in hundreds of a second since the stopwatch started
154 long hundreds, seconds, minutes, hours; local
156 hundreds = (time - seconds * 1000) / 10;
162 return String.format(format, hours, minutes, seconds, hundreds, decimalSeparator);
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
CountingTimerView.java 333 long hundreds, seconds, minutes, hours; local
335 hundreds = (time - seconds * 1000) / 10;
353 if (!neg && hundreds != 0) {
364 if (hundreds < 10 || hundreds > 90) {
394 mHundredths = String.format(TWO_DIGITS, hundreds);
TimerReceiver.java 351 long hundreds, seconds, minutes, hours; local
  /frameworks/base/core/java/com/android/internal/os/
ProcessCpuTracker.java 763 long hundreds = thousands/10;
764 pw.print(hundreds);
765 if (hundreds < 10) {
766 long remainder = thousands - (hundreds*10);
  /external/qemu/
trace.c 279 uint32_t hundreds = year / 100; local
280 year -= hundreds * 100;
284 year = (thousands << 12) | (hundreds << 8) | (tens << 4) | ones;
    [all...]
  /external/zxing/core/
core.jar 

Completed in 301 milliseconds