HomeSort by relevance Sort by last modified time
    Searched defs:mCurrentTime (Results 1 - 13 of 13) sorted by null

  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
BaselineButtonsTest.java 29 private View mCurrentTime;
45 mCurrentTime = activity.findViewById(R.id.currenttime);
55 assertNotNull(mCurrentTime);
81 assertEquals("CurrentTime wrong bottom", pauseHeight, mCurrentTime.getBottom());
83 assertTrue("CurrentTime too tall", mCurrentTime.getTop() > 0);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DateView.java 40 private final Date mCurrentTime = new Date();
97 mCurrentTime.setTime(System.currentTimeMillis());
99 final String text = mDateFormat.format(mCurrentTime);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
forgetting_curve_utils.h 35 TimeKeeper() : mCurrentTime(0) {}
37 int peekCurrentTime() const { return mCurrentTime; };
42 int mCurrentTime;
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test3DetailFragment.java 42 private long mCurrentTime;
83 mTextClock.setText("" + mCurrentTime);
108 builder.setMessage("" + (mCurrentTime - inputTime));
124 mCurrentTime = SystemClock.elapsedRealtime();
  /development/samples/Support4Demos/src/com/example/android/supportv4/media/
MediaController.java 49 private TextView mEndTime, mCurrentTime;
162 mCurrentTime = (TextView) findViewById(R.id.time_current);
237 if (mCurrentTime != null)
238 mCurrentTime.setText(stringForTime((int)position));
295 if (mCurrentTime != null)
296 mCurrentTime.setText(stringForTime( (int) newposition));
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
TimeBar.java 76 protected int mCurrentTime;
118 mPlayedBar.left + (int) ((mProgressBar.width() * (long) mCurrentTime) / mTotalTime);
145 if (mCurrentTime == currentTime && mTotalTime == totalTime) {
148 mCurrentTime = currentTime;
204 stringForTime(mCurrentTime),
234 mCurrentTime = getScrubberTime();
235 mListener.onScrubbingMove(mCurrentTime);
  /frameworks/base/core/java/android/widget/
MediaController.java 82 private TextView mEndTime, mCurrentTime;
294 mCurrentTime = (TextView) v.findViewById(com.android.internal.R.id.time_current);
437 if (mCurrentTime != null)
438 mCurrentTime.setText(stringForTime(position));
565 if (mCurrentTime != null)
566 mCurrentTime.setText(stringForTime( (int) newposition));
  /frameworks/base/services/java/com/android/server/wm/
WindowAnimator.java 48 long mCurrentTime;
164 if (appAnimator.stepAnimationLocked(mCurrentTime)) {
182 if (appAnimator.stepAnimationLocked(mCurrentTime)) {
209 final boolean nowAnimating = winAnimator.stepAnimationLocked(mCurrentTime);
464 mCurrentTime = SystemClock.uptimeMillis();
469 Slog.i(TAG, "!!! animate: entry time=" + mCurrentTime);
486 if (screenRotationAnimation.stepAnimationLocked(mCurrentTime)) {
626 pw.print(prefix); pw.print("mCurrentTime=");
627 pw.println(TimeUtils.formatUptime(mCurrentTime));
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 77 private long mCurrentTime;
308 mCurrentTime = 0;
414 if ((offset >= 0) && (offset <= mCurrentTime)) {
416 Log.v(TAG, "[SEEK] " + " at " + mCurrentTime
419 element.seekElement( (float) (mCurrentTime - offset) );
437 mCurrentTime += sleep;
440 mCurrentTime += overhead;
463 return (int) mCurrentTime;
470 Log.v(TAG, "[STOP] " + " at " + mCurrentTime
481 Log.v(TAG, "[PAUSE] " + " at " + mCurrentTime
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackActivity.java 108 mCurrentTime = (TextView) findViewById(R.id.currenttime);
    [all...]
  /frameworks/av/media/libstagefright/
MPEG4Extractor.cpp 77 uint32_t mCurrentTime;
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
CameraHal.h     [all...]
  /packages/apps/Calendar/src/com/android/calendar/
DayView.java 167 private Time mCurrentTime;
205 mCurrentTime.switchTimezone(tz);
798 mCurrentTime = new Time(Utils.getTimeZone(context, mTZUpdater));
800 mCurrentTime.set(currentTime)
    [all...]

Completed in 1630 milliseconds