/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
D | KeyguardUpdateMonitorCallback.java | 74 public void onKeyguardVisibilityChanged(boolean showing) { } in onKeyguardVisibilityChanged() argument 76 public void onKeyguardVisibilityChangedRaw(boolean showing) { in onKeyguardVisibilityChangedRaw() argument 78 if (showing == mShowing in onKeyguardVisibilityChangedRaw() 80 onKeyguardVisibilityChanged(showing); in onKeyguardVisibilityChangedRaw() 82 mShowing = showing; in onKeyguardVisibilityChangedRaw()
|
D | CameraWidgetFrame.java | 118 public void onKeyguardVisibilityChanged(boolean showing) { 119 if (mShowing == showing) 121 mShowing = showing; 469 public void onBouncerShowing(boolean showing) { in onBouncerShowing() argument 470 if (showing) { in onBouncerShowing() 491 private void onKeyguardVisibilityChanged(boolean showing) { in onKeyguardVisibilityChanged() argument 492 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged " + showing in onKeyguardVisibilityChanged() 494 if (mTransitioning && !showing) { in onKeyguardVisibilityChanged()
|
D | KeyguardStatusView.java | 60 public void onKeyguardVisibilityChanged(boolean showing) { 61 if (showing) { 62 if (DEBUG) Slog.v(TAG, "refresh statusview showing:" + showing);
|
D | KeyguardDisplayManager.java | 92 protected void updateDisplays(boolean showing) { in updateDisplays() argument 93 if (showing) { in updateDisplays()
|
D | KeyguardFaceUnlockView.java | 304 public void onKeyguardVisibilityChanged(boolean showing) { 305 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged(" + showing + ")");
|
D | KeyguardHostView.java | 857 final boolean showing = mTransportControl != null in onSaveInstanceState() 859 ss.transportState = showing ? TRANSPORT_VISIBLE : mTransportState; in onSaveInstanceState() 950 final boolean showing = getWidgetPosition(R.id.keyguard_transport_control) != -1; in ensureTransportPresentOrRemoved() 953 if (!showing && (visible || shouldBeVisible)) { in ensureTransportPresentOrRemoved() 964 } else if (showing && state == TRANSPORT_GONE) { in ensureTransportPresentOrRemoved()
|
D | KeyguardUpdateMonitor.java | 993 private void handleKeyguardVisibilityChanged(int showing) { in handleKeyguardVisibilityChanged() argument 994 if (DEBUG) Log.d(TAG, "handleKeyguardVisibilityChanged(" + showing + ")"); in handleKeyguardVisibilityChanged() 995 boolean isShowing = (showing == 1); in handleKeyguardVisibilityChanged() 1127 public void sendKeyguardVisibilityChanged(boolean showing) { in sendKeyguardVisibilityChanged() argument 1128 if (DEBUG) Log.d(TAG, "sendKeyguardVisibilityChanged(" + showing + ")"); in sendKeyguardVisibilityChanged() 1130 message.arg1 = showing ? 1 : 0; in sendKeyguardVisibilityChanged()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyguardMonitor.java | 44 public void notifyKeyguardState(boolean showing, boolean secure) { in notifyKeyguardState() argument 45 if (mShowing == showing && mSecure == secure) return; in notifyKeyguardState() 46 mShowing = showing; in notifyKeyguardState()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
D | DozeLog.java | 124 public static void traceKeyguardBouncerChanged(boolean showing) { in traceKeyguardBouncerChanged() argument 126 log("bouncer " + showing); in traceKeyguardBouncerChanged() 141 public static void traceKeyguard(boolean showing) { in traceKeyguard() argument 143 log("keyguard " + showing); in traceKeyguard() 144 if (!showing) { in traceKeyguard() 251 public void onKeyguardVisibilityChanged(boolean showing) { 252 traceKeyguard(showing);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarKeyguardViewManager.java | 357 boolean showing = mShowing; in updateStates() 362 if ((bouncerDismissible || !showing) != (mLastBouncerDismissible || !mLastShowing) in updateStates() 364 if (bouncerDismissible || !showing) { in updateStates() 370 if ((!(showing && !occluded) || bouncerShowing) in updateStates() 373 if (!(showing && !occluded) || bouncerShowing) { in updateStates() 390 if ((showing && !occluded) != (mLastShowing && !mLastOccluded) || mFirstUpdate) { in updateStates() 391 updateMonitor.sendKeyguardVisibilityChanged(showing && !occluded); in updateStates() 398 mLastShowing = showing; in updateStates()
|
D | StatusBarWindowManager.java | 178 public void setKeyguardShowing(boolean showing) { in setKeyguardShowing() argument 179 mCurrentState.keyguardShowing = showing; in setKeyguardShowing() 209 public void setBouncerShowing(boolean showing) { in setBouncerShowing() argument 210 mCurrentState.bouncerShowing = showing; in setBouncerShowing()
|
D | ScrimController.java | 84 public void setKeyguardShowing(boolean showing) { in setKeyguardShowing() argument 85 mKeyguardShowing = showing; in setKeyguardShowing() 105 public void setBouncerShowing(boolean showing) { in setBouncerShowing() argument 106 mBouncerShowing = showing; in setBouncerShowing()
|
D | KeyguardStatusBarView.java | 175 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) { in setKeyguardUserSwitcherShowing() argument 176 mKeyguardUserSwitcherShowing = showing; in setKeyguardUserSwitcherShowing()
|
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/ |
D | KeyguardStateMonitor.java | 69 public void onShowingStateChanged(boolean showing) { in onShowingStateChanged() argument 70 mIsShowing = showing; in onShowingStateChanged()
|
D | KeyguardServiceDelegate.java | 47 showing = true; in KeyguardState() 52 boolean showing; field in KeyguardServiceDelegate.KeyguardState 118 mKeyguardState.showing = false; in bindService() 157 mKeyguardState.showing = mKeyguardService.isShowing(); in isShowing() 159 return mKeyguardState.showing; in isShowing()
|
/frameworks/base/docs/html/training/system-ui/ |
D | visibility.jd | 44 synchronize other parts of your UI with the hiding/showing of system bars.</p> 64 // adjustments to your UI, such as showing the action bar or 76 concert with the status bar hiding and showing.</p>
|
/frameworks/base/core/java/com/android/internal/policy/ |
D | IKeyguardStateCallback.aidl | 19 void onShowingStateChanged(boolean showing); in onShowingStateChanged() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | ExpandableNotificationRow.java | 212 final NotificationContentView showing = getShowingLayout(); in setDark() local 213 if (showing != null) { in setDark() 214 showing.setDark(dark, fade, delay); in setDark()
|
D | ActivatableNotificationView.java | 368 public void setShowingLegacyBackground(boolean showing) { in setShowingLegacyBackground() argument 369 mShowingLegacyBackground = showing; in setShowingLegacyBackground()
|
/frameworks/base/docs/html/design/wear/ |
D | index.jd | 33 <p>The context stream is a vertical list of cards, each showing a useful or timely piece of informa… 62 …<li>The background, showing either content relating to the first card or a custom watch face desig… 63 …<li>Status indicators, showing connectivity, charging status, airplane mode, and in some watch fac…
|
/frameworks/base/core/java/android/widget/ |
D | FastScroller.java | 1075 final TextView showing; in transitionPreviewLayout() local 1078 showing = mPrimaryText; in transitionPreviewLayout() 1081 showing = mSecondaryText; in transitionPreviewLayout() 1096 final Animator hideShowing = animateAlpha(showing, 0f).setDuration(DURATION_CROSS_FADE); in transitionPreviewLayout() 1128 final int showingWidth = showing.getWidth(); in transitionPreviewLayout() 1131 final Animator scaleAnim = animateScaleX(showing, scale).setDuration(DURATION_RESIZE); in transitionPreviewLayout()
|
/frameworks/base/docs/html/training/printing/ |
D | index.jd | 29 showing someone a screen is not an adequate way to share information. Being able to print
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
D | KeyguardViewMediator.java | 1526 private void setShowingLocked(boolean showing) { in setShowingLocked() argument 1527 if (showing != mShowing) { in setShowingLocked() 1528 mShowing = showing; in setShowingLocked() 1532 mKeyguardStateCallbacks.get(i).onShowingStateChanged(showing); in setShowingLocked()
|
/frameworks/base/docs/html/distribute/monetize/ |
D | ads.jd | 29 often, while showing income-generating ads to those less likely to buy right 92 showing to their users, while others don’t mind at all.
|
/frameworks/base/docs/html/guide/faq/ |
D | troubleshooting.jd | 12 <li><a href="#noapp">My new application/activity isn't showing up in the device application 14 <li><a href="#noupdate">I updated my app, but the updates don't seem to be showing up on 72 <a name="noapp"></a><h2>My new application/activity isn't showing up in the 102 <a name="noupdate"></a><h2>I updated my app, but the updates don't seem to be showing up on the dev… 132 resources added in the <code>res/</code> sub-folders not showing up in the R class,
|