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

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
TrackPoint.java 25 private long mTime;
28 mTime = time;
32 return mTime;
  /frameworks/base/core/java/android/webkit/
PerfChecker.java 24 private long mTime;
29 mTime = SystemClock.uptimeMillis();
41 long time = upTime - mTime;
45 // Reset mTime, to permit reuse
46 mTime = upTime;
  /packages/apps/Calendar/src/com/android/calendar/
AgendaActivity.java 59 private Time mTime;
67 long time = mTime.toMillis(true);
68 mTime = new Time(Utils.getTimeZone(AgendaActivity.this, this));
69 mTime.set(time);
114 mTime = new Time(Utils.getTimeZone(this, mUpdateTZ));
139 mTime.set(millis);
151 boolean isDST = mTime.isDst != 0;
165 mTime.set(time);
166 goTo(mTime, false);
174 Log.v(TAG, "OnResume to " + mTime.toString())
    [all...]
MonthActivity.java 60 private Time mTime;
72 // We want mTime to stay on the same day, so we swap the tz
73 mTime.timezone = Utils.getTimeZone(MonthActivity.this, this);
74 mTime.normalize(true);
75 updateTitle(mTime);
102 mv.setSelectedTime(mTime);
157 mTime = time;
169 mTime = now;
254 mTime = new Time(Utils.getTimeZone(this, mUpdateTZ));
255 mTime.set(time)
    [all...]
EditEvent.java 336 private Time mTime;
339 mTime = time;
344 mTime.hour, mTime.minute,
408 private Time mTime;
411 mTime = time;
415 new DatePickerDialog(EditEvent.this, new DateListener(v), mTime.year,
416 mTime.month, mTime.monthDay).show();
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ProgressShower.java 34 private long mTime;
78 mTime += System.currentTimeMillis() - start;
84 String.format("Time to progress a dialog: %d ms", mTime));
  /system/extras/tests/sdcard/
stopwatch.cpp 81 clock_gettime(CLOCK_MONOTONIC, &mData[mDataLen].mTime);
85 mStart = mData[mDataLen].mTime; // mDataLen should be 0
95 clock_gettime(CLOCK_MONOTONIC, &mData[mDataLen].mTime);
136 long second = mData[i * 2].mTime.tv_sec - mStart.tv_sec;
137 long nano = mData[i * 2].mTime.tv_nsec - mStart.tv_nsec;
172 long second = mData[i + 1].mTime.tv_sec - mData[i].mTime.tv_sec;
173 long nano = mData[i + 1].mTime.tv_nsec - mData[i].mTime.tv_nsec;
stopwatch.h 79 struct timespec mTime;
  /frameworks/base/core/java/android/net/http/
CertificateValidatorCache.java 193 private long mTime;
216 mTime = SystemClock.uptimeMillis();
223 return CACHE_ENTRY_LIFETIME < SystemClock.uptimeMillis() - mTime;
  /frameworks/base/location/java/android/location/
Location.java 61 private long mTime = 0;
86 pw.println(prefix + "mProvider=" + mProvider + " mTime=" + mTime);
120 mTime = l.mTime;
139 mTime = 0;
474 return mTime;
482 mTime = time;
683 ",mTime=" + mTime
    [all...]
  /frameworks/base/core/java/android/widget/
DateTimeView.java 62 Date mTime;
99 mTime = new Date(t.year-1900, t.month, t.monthDay, t.hour, t.minute, 0);
104 if (mTime == null) {
111 Date time = mTime;
164 String text = format.format(mTime);
  /development/samples/GlobalTime/src/com/android/globaltime/
Clock.java 42 private long mTime;
177 this.mTime = time;
217 cal.setTimeInMillis(mTime - doffset);
224 float daylightOffset = tz.inDaylightTime(new Date(mTime)) ?
234 cal.setTimeInMillis(mTime);
  /frameworks/base/media/java/android/media/
Metadata.java 149 private Date mTime;
154 mTime = time;
161 res.append(mTime).append("-").append(mDuration)
  /frameworks/base/services/audioflinger/
AudioPolicyService.cpp 662 if (mAudioCommands[0]->mTime <= curTime) {
731 waitTime = mAudioCommands[0]->mTime - curTime;
902 command->mTime = systemTime() + milliseconds(delayMs);
913 if (command2->mTime <= command->mTime) break;
999 (int)ns2s(mTime),
1000 (int)ns2ms(mTime)%1000
    [all...]
AudioPolicyService.h 190 nsecs_t mTime; // time stamp
  /frameworks/base/core/java/android/pim/vcard/
VCardParserImpl_V21.java 83 private long mTime;
107 mTime += end - start;
119 mTime += end - start;
129 return mTime;
    [all...]
  /packages/apps/Tag/src/com/android/vcard/
VCardParserImpl_V21.java 84 private long mTime;
108 mTime += end - start;
120 mTime += end - start;
130 return mTime;
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
DeskClock.java 147 private DigitalClock mTime;
320 mTime = (DigitalClock) findViewById(R.id.time);
639 if (mTime != null && mTime.getWindowVisibility() != View.VISIBLE) {
693 mTime = (DigitalClock) findViewById(R.id.time);
697 mTime.getRootView().requestFocus();
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
RecurrenceProcessor.java 302 mTime = new Time(Time.TIMEZONE_UTC);
327 t = mTime;
347 t = mTime;
496 private Time mTime;
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
LockScreen.java 65 private TextView mTime;

Completed in 488 milliseconds