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

  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerView.java 34 private TextView mSeconds;
72 mSeconds = (TextView) findViewById(R.id.seconds);
73 if (mSeconds != null) {
74 addStartPadding(mSeconds);
140 if (mSeconds != null) {
141 mSeconds.setText(String.format("%02d", seconds));
CountingTimerView.java 58 private String mHours, mMinutes, mSeconds, mHundredths;
390 mSeconds = String.format(TWO_DIGITS, seconds);
417 + ((mSeconds == null) ? 0 : mSeconds.length())
423 + mBigSeconds.calcTotalWidth(mSeconds)
498 return String.format("%s:%s", mMinutes, mSeconds);
500 return String.format("%s:%s:%s", mHours, mMinutes, mSeconds);
502 return String.format("%s:%s.%s", mMinutes, mSeconds, mHundredths);
504 return String.format("%s:%s:%s.%s", mHours, mMinutes, mSeconds, mHundredths);
646 if (mSeconds != null)
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
AnalogClock.java 56 private float mSeconds;
213 drawHand(canvas, mSecondHand, x, y, mSeconds / 60.0f * 360.0f, changed);
246 mSeconds = second;//(float) ((second * 1000 + millis) / 166.666);

Completed in 65 milliseconds