OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
;
60
mSeconds
= (TextView)findViewById(R.id.seconds);
65
if (
mSeconds
!= null) {
66
mSeconds
.setTypeface(mAndroidClockMonoThin);
132
if (
mSeconds
!= null) {
133
mSeconds
.setText(String.format("%02d",seconds));
CountingTimerView.java
46
private String mHours, mMinutes,
mSeconds
, mHundredths;
364
mSeconds
= String.format(TWO_DIGITS, seconds);
389
+ ((
mSeconds
== null) ? 0 :
mSeconds
.length())
395
+ mBigThinSeconds.calcTotalWidth(
mSeconds
)
458
return String.format("%s:%s", mMinutes,
mSeconds
);
460
return String.format("%s:%s:%s", mHours, mMinutes,
mSeconds
);
462
return String.format("%s:%s.%s", mMinutes,
mSeconds
, mHundredths);
464
return String.format("%s:%s:%s.%s", mHours, mMinutes,
mSeconds
, mHundredths);
611
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 486 milliseconds