HomeSort by relevance Sort by last modified time
    Searched defs:mTime (Results 1 - 25 of 35) sorted by null

1 2

  /frameworks/av/include/media/
AudioTimestamp.h 25 mTime.tv_sec = 0;
26 mTime.tv_nsec = 0;
30 struct timespec mTime; // corresponding CLOCK_MONOTONIC when frame is expected to present
  /cts/suite/pts/deviceTests/opengl/jni/reference/scene/flocking/
WaterMeshNode.h 30 const int mTime;
  /packages/apps/Email/tests/src/com/android/email/
MockClock.java 24 public long mTime = DEFAULT_TIME;
28 return mTime;
32 mTime++;
36 mTime += milliseconds;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
WaveTriggerFilter.java 33 private float mTime = 0f;
64 mTime = 0.5f;
70 value = -Math.abs(mTime - 1f) + 1f;
71 mTime += 0.2f;
72 if (mTime >= 2f) {
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java 56 private CircleTimerView mTime;
333 mTime = (CircleTimerView)v.findViewById(R.id.stopwatch_time);
464 mTime.readFromSharedPref(prefs, "sw");
465 mTime.postInvalidate();
503 mTime.writeToSharedPref(prefs, "sw");
526 mTime.pauseIntervalAnimation();
539 if (mTime.isAnimating()) {
540 mTime.startIntervalAnimation();
557 mTime.clearSharedPref(prefs, "sw");
561 mTime.stopIntervalAnimation()
    [all...]
  /system/extras/tests/sdcard/
stopwatch.h 79 struct timespec mTime;
  /frameworks/base/services/java/com/android/server/
NetworkTimeUpdateService.java 70 private TrustedTime mTime;
95 mTime = NtpTrustedTime.getInstance(context);
168 if (mTime.getCacheAge() >= mPollingIntervalMs) {
169 mTime.forceRefresh();
173 if (mTime.getCacheAge() < mPollingIntervalMs) {
174 final long ntp = mTime.currentTimeMillis();
  /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);
TextClock.java 127 private Calendar mTime;
239 mTime = Calendar.getInstance(TimeZone.getTimeZone(timeZone));
241 mTime = Calendar.getInstance();
512 mTime.setTimeInMillis(System.currentTimeMillis());
513 setText(DateFormat.format(mFormat, mTime));
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaFragment.java 60 private final Time mTime;
85 mTime.switchTimezone(mTimeZone);
98 mTime = new Time();
102 mTime.setToNow();
104 mTime.set(mInitialTimeMillis);
106 mLastHandledEventTime.set(mTime);
114 mTime.switchTimezone(mTimeZone);
133 mTime.set(prevTime);
135 Log.d(TAG, "Restoring time to " + mTime.toString());
215 Log.v(TAG, "OnResume to " + mTime.toString())
    [all...]
AgendaListView.java 51 private Time mTime;
59 mTime.switchTimezone(mTimeZone);
92 mTime = new Time(mTimeZone);
196 startTime = Utils.convertAlldayLocalToUTC(mTime, startTime, mTimeZone);
197 endTime = Utils.convertAlldayLocalToUTC(mTime, endTime, mTimeZone);
199 mTime.set(startTime);
211 time = mTime;
218 mTime.set(time);
219 mTime.switchTimezone(mTimeZone);
220 mTime.normalize(true)
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
VelocityTrackerTest.java 38 private long mTime;
48 mTime = 1000;
148 mTime += step;
158 mTime += duration;
162 if (mTime >= mLastTime) {
163 MotionEvent ev = MotionEvent.obtain(0L, mTime, MotionEvent.ACTION_MOVE, mPx, mPy, 0);
166 mLastTime = mTime;
174 mTime, mPx, mPy, mVx, mVy, mAx, mAy,
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/
AddVoicemailActivity.java 74 private TextView mTime;
125 String dateStr = mTime.getText().toString();
157 mTime.setText(DATE_FORMATTER.format(new Date()));
  /frameworks/av/services/audioflinger/
AudioPolicyService.h 210 nsecs_t mTime; // time stamp
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V21.java 49 private long mTime;
73 mTime += end - start;
85 mTime += end - start;
95 return mTime;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/recurrencepicker/
RecurrencePickerDialog.java 273 private Time mTime = new Time(); // TODO timezone?
634 mTime.set(b.getLong(BUNDLE_START_TIME_MILLIS));
638 mTime.timezone = tz;
640 mTime.normalize(false);
643 mModel.weeklyByDayOfWeek[mTime.weekDay] = true;
651 mModel.weeklyByDayOfWeek[mTime.weekDay] = true;
656 mTime.setToNow();
729 mModel.endDate = new Time(mTime);
    [all...]
  /external/lzma/C/Util/SfxSetup/
SfxSetup.c 470 FILETIME mTime;
471 mTime.dwLowDateTime = f->MTime.Low;
472 mTime.dwHighDateTime = f->MTime.High;
473 SetFileTime(outFile.handle, NULL, NULL, &mTime);
  /packages/apps/DeskClock/src/com/android/deskclock/
SettingsActivity.java 70 private long mTime;
88 mTime = System.currentTimeMillis();
239 mOffset = tz.getOffset(mTime);
  /frameworks/base/services/tests/servicestests/src/com/android/server/
NetworkStatsServiceTest.java 113 private TrustedTime mTime;
133 mTime = createMock(TrustedTime.class);
138 mServiceContext, mNetManager, mAlarmManager, mTime, mStatsDir, mSettings);
173 mTime = null;
    [all...]
  /frameworks/base/services/java/com/android/server/net/
NetworkStatsService.java 158 private final TrustedTime mTime;
264 mTime = checkNotNull(time, "missing TrustedTime");
375 final long currentTime = mTime.hasCache() ? mTime.currentTimeMillis()
677 final long currentTime = mTime.hasCache() ? mTime.currentTimeMillis()
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarController.java 87 private final Time mTime = new Time();
93 mTime.switchTimezone(Utils.getTimeZone(mContext, this));
312 mTime.setToNow();
470 Log.d(TAG, "mTime " + (mTime == null ? "null" : mTime.toString()));
478 // Set mTime if selectedTime is set
480 mTime.set(event.selectedTime);
483 // selectedTime is not set so set mTime to startTime iff it is not
485 long mtimeMillis = mTime.toMillis(false)
    [all...]
  /frameworks/base/core/java/android/app/
AppOpsManager.java 654 private final long mTime;
661 mTime = time;
675 return mTime;
687 return mDuration == -1 ? (int)(System.currentTimeMillis()-mTime) : mDuration;
699 dest.writeLong(mTime);
707 mTime = source.readLong();
    [all...]
  /frameworks/base/location/java/android/location/
Location.java 81 private long mTime = 0;
131 mTime = l.mTime;
152 mTime = 0;
503 return mTime;
513 mTime = time;
776 if (mTime == 0) return false;
796 if (mTime == 0) mTime = System.currentTimeMillis();
834 if (mTime == 0)
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceProcessor.java 420 mTime = new Time(Time.TIMEZONE_UTC);
445 t = mTime;
465 t = mTime;
614 private Time mTime;
    [all...]
  /frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/platform/
JankTestBase.java 98 int mTime = DEFAULT_TRACE_TIME;
114 mTime = traceTime;
123 String command = String.format(ATRACE_COMMAND, mTime);

Completed in 1403 milliseconds

1 2