OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hundreds
(Results
1 - 5
of
5
) 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/
TimerReceiver.java
351
long
hundreds
, seconds, minutes, hours;
local
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
);
/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 230 milliseconds