HomeSort by relevance Sort by last modified time
    Searched refs:showing (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /frameworks/base/core/java/com/android/internal/policy/
IKeyguardStateCallback.aidl 19 void onShowingStateChanged(boolean showing);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyguardMonitor.java 44 public void notifyKeyguardState(boolean showing, boolean secure) {
45 if (mShowing == showing && mSecure == secure) return;
46 mShowing = 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;
CameraWidgetFrame.java 118 public void onKeyguardVisibilityChanged(boolean showing) {
119 if (mShowing == showing)
121 mShowing = showing;
469 public void onBouncerShowing(boolean showing) {
470 if (showing) {
491 private void onKeyguardVisibilityChanged(boolean showing) {
492 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged " + showing
494 if (mTransitioning && !showing) {
  /external/robolectric/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;
  /external/chromium_org/chrome/browser/ui/autofill/
test_generated_credit_card_bubble_view.h 38 bool showing() const { return showing_; } function in class:autofill::TestGeneratedCreditCardBubbleView
47 // Whether the bubble is currently showing or not.
generated_credit_card_bubble_controller_unittest.cc 99 // Ensure that showing the generated card UI bumps the persistent count.
102 EXPECT_TRUE(controller()->GetTestingBubble()->showing());
107 EXPECT_TRUE(controller()->GetTestingBubble()->showing());
116 // Ensure that while showing the generated card UI that the bubble's text
156 EXPECT_TRUE(controller()->GetTestingBubble()->showing());
166 EXPECT_TRUE(controller()->GetTestingBubble()->showing());
169 // should stay showing.
173 EXPECT_TRUE(controller()->GetTestingBubble()->showing());
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardStateMonitor.java 69 public void onShowingStateChanged(boolean showing) {
70 mIsShowing = showing;
KeyguardServiceDelegate.java 44 // Assume keyguard is showing and secure until we know for sure. This is here in
47 showing = true;
52 boolean showing; field in class:KeyguardServiceDelegate.KeyguardState
118 mKeyguardState.showing = false;
157 mKeyguardState.showing = mKeyguardService.isShowing();
159 return mKeyguardState.showing;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DozeLog.java 124 public static void traceKeyguardBouncerChanged(boolean showing) {
126 log("bouncer " + showing);
141 public static void traceKeyguard(boolean showing) {
143 log("keyguard " + showing);
144 if (!showing) {
251 public void onKeyguardVisibilityChanged(boolean showing) {
252 traceKeyguard(showing);
  /external/robolectric/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/chromium_org/chrome/browser/ui/webui/ntp/
new_tab_ui.h 75 void set_showing_sync_bubble(bool showing) { showing_sync_bubble_ = showing; }
  /external/chromium_org/third_party/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
  /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/packages/SystemUI/src/com/android/systemui/statusbar/phone/
StatusBarKeyguardViewManager.java 38 * Manages creating, showing, hiding and resetting the keyguard within the status bar. Calls back
48 // Delay for showing the navigation bar when the bouncer appears. This should be kept in sync
111 // The keyguard might be showing (already). So we need to hide it.
314 * @return Whether the keyguard is showing
342 // Keyguard is not going away, thus we are showing the navigation bar because the
357 boolean showing = mShowing;
362 if ((bouncerDismissible || !showing) != (mLastBouncerDismissible || !mLastShowing)
364 if (bouncerDismissible || !showing) {
370 if ((!(showing && !occluded) || bouncerShowing)
373 if (!(showing && !occluded) || bouncerShowing)
    [all...]
ScrimController.java 84 public void setKeyguardShowing(boolean showing) {
85 mKeyguardShowing = showing;
105 public void setBouncerShowing(boolean showing) {
106 mBouncerShowing = showing;
StatusBarWindowManager.java 178 public void setKeyguardShowing(boolean showing) {
179 mCurrentState.keyguardShowing = showing;
209 public void setBouncerShowing(boolean showing) {
210 mCurrentState.bouncerShowing = showing;
  /external/chromium_org/chrome/browser/resources/ntp4/
new_tab_theme.css 47 /* Only change the background to a gradient when a promo is showing. */
48 .showing-login-area #page-switcher-end:hover,
49 .showing-login-area #page-switcher-end:focus,
50 .showing-login-area #page-switcher-end.drag-target {
  /external/chromium_org/chrome/browser/ui/webui/extensions/
extension_settings_browsertest.js 56 assertFalse($('pack-extension-overlay').classList.contains('showing'));
60 assertTrue($('pack-extension-overlay').classList.contains('showing'));
87 assertTrue($('extension-commands-overlay').classList.contains('showing'));
  /external/chromium_org/chrome/browser/resources/history/
history_focus_manager.js 24 return document.querySelector('#overlay .showing') ||
  /packages/apps/InCallUI/src/com/android/incallui/
ProximitySensor.java 133 public void onInCallShowing(boolean showing) {
134 if (showing) {
137 // We only consider the UI not showing for instances where another app took the foreground.
138 // If we stopped showing because the screen is off, we still consider that showing.
  /external/chromium_org/content/public/browser/
render_widget_host_view.h 92 // Whether the view is showing.
98 // Returns true if the View's context menu is showing.
101 // Tells the View whether the context menu is showing.
102 virtual void SetShowingContextMenu(bool showing) = 0;
158 // Brings up the dictionary showing a definition for the selected text.
  /external/chromium_org/ui/app_list/
pagination_model.cc 68 const bool showing = transition_animation_->IsShowing(); local
69 const int from_page = showing ? selected_page_ : transition_.target_page;
70 const int to_page = showing ? transition_.target_page : selected_page_;
73 if (showing)
264 // Showing animation ends.

Completed in 710 milliseconds

1 2 3 4 5 6