Searched defs:mHours (Results 1 - 1 of 1) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DCountingTimerView.java58 private String mHours, mMinutes, mSeconds, mHundredths; field in class:CountingTimerView
370 mHours = String.format(format, hours);
373 mHours = String.format(format, hours);
375 mHours = null;
413 return ((mHours == null) ? 0 : mHours.length())
420 mTotalTextWidth = mBigHours.calcTotalWidth(mHours) + mBigMinutes.calcTotalWidth(mMinutes)
495 if (mHours == null) {
498 return String.format("%s:%s:%s", mHours, mMinutes, mSeconds);
499 } else if (mHours
[all...]

Completed in 2790 milliseconds