/frameworks/base/core/java/com/android/internal/policy/ |
IKeyguardStateCallback.aidl | 19 void onShowingStateChanged(boolean showing);
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
KeyguardUpdateMonitorCallback.java | 72 * @param showing Indicates if the keyguard is now visible. 74 public void onKeyguardVisibilityChanged(boolean showing) { } 76 public void onKeyguardVisibilityChangedRaw(boolean showing) { 78 if (showing == mShowing 80 onKeyguardVisibilityChanged(showing); 82 mShowing = showing;
|
KeyguardDisplayManager.java | 92 protected void updateDisplays(boolean showing) { 93 if (showing) {
|
KeyguardStatusView.java | 60 public void onKeyguardVisibilityChanged(boolean showing) { 61 if (showing) { 62 if (DEBUG) Slog.v(TAG, "refresh statusview showing:" + showing);
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowPopupWindow.java | 25 private boolean showing; field in class:ShadowPopupWindow 109 * @param showing true if popup window is showing 111 public void setShowing(boolean showing) { 112 this.showing = showing; 117 return showing; 125 showing = false;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
KeyguardMonitor.java | 102 public void notifyKeyguardState(boolean showing, boolean secure) { 103 if (mShowing == showing && mSecure == secure) return; 104 mShowing = showing;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
DozeLog.java | 130 public static void traceKeyguardBouncerChanged(boolean showing) { 132 log("bouncer " + showing); 147 public static void traceKeyguard(boolean showing) { 149 log("keyguard " + showing); 150 if (!showing) { 259 public void onKeyguardVisibilityChanged(boolean showing) { 260 traceKeyguard(showing);
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/util/ |
TestFragmentTransaction.java | 18 private boolean showing; field in class:TestFragmentTransaction 75 this.showing = false; 82 this.showing = true; 207 return showing;
|
/external/skia/tools/lua/ |
dumpops.lua | 26 -- dump the params in t, specifically showing the verb first, which we
|
bitmap_statistics.lua | 27 -- dump the params in t, specifically showing the verb first, which we
|
/frameworks/base/services/core/java/com/android/server/policy/keyguard/ |
KeyguardStateMonitor.java | 84 public void onShowingStateChanged(boolean showing) { 85 mIsShowing = showing;
|
KeyguardServiceDelegate.java | 55 // Assume keyguard is showing and secure until we know for sure. This is here in 58 showing = true; 64 boolean showing; field in class:KeyguardServiceDelegate.KeyguardState 137 mKeyguardState.showing = false; 197 mKeyguardState.showing = mKeyguardService.isShowing(); 199 return mKeyguardState.showing; 429 pw.println(prefix + "showing=" + mKeyguardState.showing);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
NotificationCustomViewWrapper.java | 135 public void setShowingLegacyBackground(boolean showing) { 136 super.setShowingLegacyBackground(showing); 137 mShowingLegacyBackground = showing;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
StatusBarWindowManager.java | 255 public void setKeyguardShowing(boolean showing) { 256 mCurrentState.keyguardShowing = showing; 281 public void setBouncerShowing(boolean showing) { 282 mCurrentState.bouncerShowing = showing; 286 public void setBackdropShowing(boolean showing) { 287 mCurrentState.backdropShowing = showing; 306 public void setHeadsUpShowing(boolean showing) { 307 mCurrentState.headsUpShowing = showing;
|
StatusBarKeyguardViewManager.java | 40 * Manages creating, showing, hiding and resetting the keyguard within the status bar. Calls back 50 // Delay for showing the navigation bar when the bouncer appears. This should be kept in sync 130 // The keyguard might be showing (already). So we need to hide it. 419 * @return Whether the keyguard is showing 448 // Keyguard is not going away, thus we are showing the navigation bar because the 463 boolean showing = mShowing; 469 if ((bouncerDismissible || !showing || remoteInputActive) != 472 if (bouncerDismissible || !showing || remoteInputActive) { 505 if ((showing && !occluded) != (mLastShowing && !mLastOccluded) || mFirstUpdate) { 506 updateMonitor.onKeyguardVisibilityChanged(showing && !occluded) [all...] |
PanelBar.java | 63 public void setBouncerShowing(boolean showing) { 64 int important = showing ? IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS
|
ScrimController.java | 111 public void setKeyguardShowing(boolean showing) { 112 mKeyguardShowing = showing; 158 public void setBouncerShowing(boolean showing) { 159 mBouncerShowing = showing;
|
/prebuilts/go/darwin-x86/test/fixedbugs/bug345.dir/ |
main.go | 16 // showing the full import path, which for the
|
/prebuilts/go/linux-x86/test/fixedbugs/bug345.dir/ |
main.go | 16 // showing the full import path, which for the
|
/packages/services/Car/car-support-lib/src/android/support/car/ui/ |
CircularClipAnimation.java | 137 * @param showing Whether the animation is supposed to show or hide components. 144 public void start(boolean showing, int x, int y, int width, int height, View anchorView) { 146 "start(" + showing + ", " + width + ", " + height + ", " + anchorView + ")"); 157 if (showing) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
VolumeDialogMotion.java | 81 private void setShowing(boolean showing) { 82 if (showing == mShowing) return; 83 mShowing = showing;
|
/packages/apps/Dialer/InCallUI/src/com/android/incallui/ |
AnswerPresenter.java | 48 public void onUiShowing(boolean showing) { 49 if (showing) { 152 Log.d(TAG, "Showing incoming for call id: " + mCallId + " " + this);
|
ProximitySensor.java | 154 public void onInCallShowing(boolean showing) { 155 if (showing) { 158 // We only consider the UI not showing for instances where another app took the foreground. 159 // If we stopped showing because the screen is off, we still consider that showing.
|
VideoPauseController.java | 247 * @param showing true if UI is in the foreground, false otherwise. 249 public void onUiShowing(boolean showing) { 255 if (showing) {
|
/packages/services/Car/car-support-lib/src/android/support/car/app/menu/ |
CarDrawerActivity.java | 335 public void setDrawerShowing(boolean showing) { 336 mDrawerShowing = showing;
|