Searched refs:mClock (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardDisplayManager.java129 private View mClock; field in class:KeyguardDisplayManager.KeyguardPresentation
137 int x = mMarginLeft + (int) (Math.random() * (mUsableWidth - mClock.getWidth()));
138 int y = mMarginTop + (int) (Math.random() * (mUsableHeight - mClock.getHeight()));
139 mClock.setTranslationX(x);
140 mClock.setTranslationY(y);
141 mClock.postDelayed(mMoveTextRunnable, MOVE_CLOCK_TIMEOUT);
152 mClock.removeCallbacks(mMoveTextRunnable);
167 mClock = findViewById(R.id.clock);
170 mClock.post(mMoveTextRunnable);
/frameworks/base/location/java/android/location/
H A DGpsMeasurementsEvent.java55 private final GpsClock mClock; field in class:GpsMeasurementsEvent
88 mClock = clock;
95 return mClock;
134 parcel.writeParcelable(mClock, flags);
147 builder.append(mClock.toString());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarTransitions.java35 private View mLeftSide, mStatusIcons, mSignalCluster, mBattery, mClock; field in class:PhoneStatusBarTransitions
50 mClock = mView.findViewById(R.id.clock);
95 animateTransitionTo(mClock, newAlphaBC)
107 mClock.setAlpha(newAlphaBC);
H A DStatusBarIconController.java77 private TextView mClock; field in class:StatusBarIconController
121 mClock = (TextView) statusBar.findViewById(R.id.clock);
161 FontSizeUtils.updateFontSize(mClock, R.dimen.status_bar_clock_size);
265 mClock.setVisibility(visible ? View.VISIBLE : View.GONE);
394 mClock.setTextColor(mIconTint);
H A DStatusBarHeaderView.java69 private View mClock; field in class:StatusBarHeaderView
141 mClock = findViewById(R.id.clock);
572 target.clockY = mClock.getBottom();
617 mClock.setY(values.clockY - mClock.getHeight());
772 transition(mClock, !showingDetail);
/frameworks/base/libs/hwui/
H A DAnimationContext.cpp26 : mClock(clock)
66 mFrameTimeMs = mClock.computeFrameTimeMs();
H A DAnimationContext.h107 renderthread::TimeLord& mClock; member in class:android::uirenderer::AnimationContext
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DHeadsUpManager.java95 private Clock mClock; field in class:HeadsUpManager
115 mClock = new Clock();
362 if (entry != null && mClock.currentTimeMillis() < entry.postTime) {
553 postTime = mClock.currentTimeMillis() + mTouchAcceptanceDelay;
569 long currentTime = mClock.currentTimeMillis();
593 return earliestRemovaltime < mClock.currentTimeMillis();
599 earliestRemovaltime - mClock.currentTimeMillis());

Completed in 177 milliseconds