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

  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
Stopwatches.java 85 * @param time - in hundreds of a second since the stopwatch started
99 long hundreds, seconds, minutes, hours; local
101 hundreds = (time - seconds * 1000) / 10;
118 seconds, hundreds, decimalSeparator, lap);
123 * @param time - in hundreds of a second since the stopwatch started
129 long hundreds, seconds, minutes, hours; local
131 hundreds = (time - seconds * 1000) / 10;
137 String timeStr = String.format(format, hours, minutes, seconds, hundreds, decimalSeparator);
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerReceiver.java 304 long hundreds, seconds, minutes, hours; local
CountingTimerView.java 311 long hundreds, seconds, minutes, hours; local
313 hundreds = (time - seconds * 1000) / 10;
328 if (!neg && hundreds != 0) {
339 if (hundreds < 10 || hundreds > 90) {
366 mHundredths = String.format(TWO_DIGITS, hundreds);
  /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 170 milliseconds