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

1 2 3 4 5

  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardUpdateMonitorCallback.java 75 * @param showing Indicates if the keyguard is now visible.
77 void onKeyguardVisibilityChanged(boolean showing) { }
79 void onKeyguardVisibilityChangedRaw(boolean showing) {
81 if (showing == mShowing
83 onKeyguardVisibilityChanged(showing);
85 mShowing = showing;
KeyguardFaceUnlockView.java 206 * should not be started, it either goes to the back up, or remains showing to prepare for
224 // Don't start it if the screen is off or if it's not showing, but keep this view up
226 // showing.
281 public void onKeyguardVisibilityChanged(boolean showing) {
282 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged(" + showing + ")");
286 mIsShowing = showing;
291 if (!showing && wasShowing) {
293 } else if (showing && powerManager.isScreenOn() && !wasShowing) {
KeyguardStatusView.java 53 void onKeyguardVisibilityChanged(boolean showing) {
54 if (showing) {
55 if (DEBUG) Slog.v(TAG, "refresh statusview showing:" + showing);
CameraWidgetFrame.java 116 void onKeyguardVisibilityChanged(boolean showing) {
117 if (mShowing == showing)
119 mShowing = showing;
467 public void onBouncerShowing(boolean showing) {
468 if (showing) {
489 private void onKeyguardVisibilityChanged(boolean showing) {
490 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged " + showing
492 if (mTransitioning && !showing) {
KeyguardDisplayManager.java 92 protected void updateDisplays(boolean showing) {
93 if (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 139 // Ensure that showing the generated card UI bumps the persistent count.
142 EXPECT_TRUE(controller()->GetTestingBubble()->showing());
147 EXPECT_TRUE(controller()->GetTestingBubble()->showing());
156 // Ensure that while showing the generated card UI that the bubble's text
198 EXPECT_TRUE(controller()->GetTestingBubble()->showing());
208 EXPECT_TRUE(controller()->GetTestingBubble()->showing());
211 EXPECT_TRUE(controller()->GetTestingBubble()->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/resources/history/
history_focus_manager.js 23 return document.querySelector('#overlay .showing') ||
  /external/chromium_org/chrome/browser/ui/webui/ntp/
new_tab_ui.h 66 void set_showing_sync_bubble(bool showing) { showing_sync_bubble_ = 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
  /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 {
new_tab.css 318 #footer.showing-trash-mode #trash {
325 #footer.showing-trash-mode #trash.drag-target {
352 #footer.showing-trash-mode #trash.drag-target .lid {
356 html[dir='rtl'] #footer.showing-trash-mode #trash.drag-target .lid {
435 #footer.showing-trash-mode .menu-container {
  /external/chromium_org/chrome/browser/ui/webui/extensions/
extension_settings_browsertest.js 29 assertFalse($('packExtensionOverlay').classList.contains('showing'));
33 assertTrue($('packExtensionOverlay').classList.contains('showing'));
58 assertTrue($('extensionCommandsOverlay').classList.contains('showing'));
  /external/chromium_org/chrome/browser/resources/extensions/
pack_extension_overlay.js 72 * Handles the showing of the extension directory browser.
83 * Handles the showing of the extension private key file.
95 * Wrap up the pack process by showing the success |message| and closing
113 * Post an alert overlay showing |message|, and upon acknowledgement, close
114 * the alert overlay and return to showing the PackExtensionOverlay.
extensions.js 293 pageDiv.classList.add('showing-banner');
297 pageDiv.classList.remove('showing-banner');
349 return document.querySelector('#overlay .page.showing');
354 * showing, if any.
361 currentlyShowingOverlay.classList.remove('showing');
364 node.classList.add('showing');
  /external/chromium_org/chrome/browser/ui/webui/extensions/chromeos/
kiosk_apps_browsertest.js 165 expectFalse(confirmOverlay.classList.contains('showing'));
170 expectFalse(confirmOverlay.classList.contains('showing'));
175 expectTrue(confirmOverlay.classList.contains('showing'));
180 expectFalse(confirmOverlay.classList.contains('showing'));
185 expectTrue(confirmOverlay.classList.contains('showing'));
188 expectFalse(confirmOverlay.classList.contains('showing'));
  /external/chromium_org/content/public/browser/
render_widget_host_view.h 95 // Whether the view is showing.
101 // Returns true if the View's context menu is showing.
104 // Tells the View whether the context menu is showing.
105 virtual void SetShowingContextMenu(bool showing) = 0;
142 // 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)
253 // Showing animation ends.
  /packages/apps/InCallUI/src/com/android/incallui/
ProximitySensor.java 144 public void onInCallShowing(boolean showing) {
145 if (showing) {
148 // We only consider the UI not showing for instances where another app took the foreground.
149 // If we stopped showing because the screen is off, we still consider that showing.
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardServiceDelegate.java 44 // Assume keyguard is showing and secure until we know for sure. This is here in
47 showing = true;
51 boolean showing; field in class:KeyguardServiceDelegate.KeyguardState
144 mKeyguardState.showing = mKeyguardService.isShowing();
146 return mKeyguardState.showing;
  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanel.java 40 private AtomicBoolean showing = new AtomicBoolean(false); field in class:AwtPanel
114 if (showing.getAndSet(currentShowing) != currentShowing){
116 System.out.println("OGL: Enter showing state.");
118 System.out.println("OGL: Exit showing state.");
181 return paintMode != PaintMode.OnRequest && showing.get();
  /external/chromium_org/chrome/browser/resources/uber/
uber_shared.css 12 * showing sub-pages that vertically overflow. */
137 .page.showing-banner {
147 .page:not(.showing-banner) .page-banner {

Completed in 498 milliseconds

1 2 3 4 5