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

1 2 3

  /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/webkit/Source/WebKit/win/
WebNodeHighlight.h 58 void onWebViewShowWindow(bool showing);
WebNodeHighlight.cpp 221 void WebNodeHighlight::onWebViewShowWindow(bool showing)
226 if (isShowing() == showing)
229 if (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;
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardUpdateMonitorCallback.java 67 * @param showing Indicates if the keyguard is now visible.
69 void onKeyguardVisibilityChanged(boolean showing) { }
KeyguardFaceUnlockView.java 207 * should not be started, it either goes to the back up, or remains showing to prepare for
225 // Don't start it if the screen is off or if it's not showing, but keep this view up
227 // showing.
282 public void onKeyguardVisibilityChanged(boolean showing) {
283 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged(" + showing + ")");
287 mIsShowing = showing;
292 if (!showing && wasShowing) {
294 } else if (showing && powerManager.isScreenOn() && !wasShowing) {
KeyguardStatusView.java 62 void onKeyguardVisibilityChanged(boolean showing) {
63 if (showing) {
64 if (DEBUG) Slog.v(TAG, "refresh statusview showing:" + showing);
CameraWidgetFrame.java 113 void onKeyguardVisibilityChanged(boolean showing) {
114 if (mShowing == showing)
116 mShowing = showing;
413 public void onBouncerShowing(boolean showing) {
414 if (showing) {
435 private void onKeyguardVisibilityChanged(boolean showing) {
436 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged " + showing
438 if (mTransitioning && !showing) {
KeyguardUpdateMonitor.java 202 * This currently implements the bare minimum required to enable showing and hiding
204 * KeyguardTransportControl maintains an independent connection while it's showing.
750 private void handleKeyguardVisibilityChanged(int showing) {
751 if (DEBUG) Log.d(TAG, "handleKeyguardVisibilityChanged(" + showing + ")");
752 boolean isShowing = (showing == 1);
    [all...]
KeyguardHostView.java     [all...]
KeyguardWidgetFrame.java 517 public void onBouncerShowing(boolean 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/chrome/browser/renderer_host/
render_widget_host_view_gtk.h 88 virtual void ShowingContextMenu(bool showing);
185 // Whether we are showing a context menu.
render_widget_host_view_views.h 74 virtual void ShowingContextMenu(bool showing) OVERRIDE;
183 // Whether we are showing a context menu.
  /external/chromium/chrome/browser/resources/
bug_report.js 160 * Change the type of screenshot we're showing to the user from
175 * Change the type of screenshot we're showing to the user from
print_preview_animations.js 6 // preview tab (scrollbars, showing hiding options, resizing).
10 // Timeout duration in milliseconds used for showing the scrollbars.
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_cursor.c 189 showing the new one. (But don't erase NULL cursor)
267 int showing; local
269 showing = (SDL_cursorstate & CURSOR_VISIBLE);
278 if ( (SDL_cursorstate & CURSOR_VISIBLE) != showing ) {
290 return(showing ? 1 : 0);
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarOverlayLayout.java 91 public void setShowingForActionMode(boolean showing) {
92 if (showing) {
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.cpp 754 BOOL showing;
755 if (FAILED(ed->spellingUIIsShowing(&showing)))
758 return !!showing;
  /frameworks/base/core/java/android/widget/
ListPopupWindow.java 510 boolean showing = isShowing();
511 if (showing) {
515 if (showing) {
528 * Show the popup list. If the list is already showing, this method
651 * <p>If the popup is showing, calling this method will take effect only
703 * @return {@code true} if the popup is currently showing, {@code false} otherwise.
711 * to interact with the IME while it is showing, {@code false} otherwise.
722 * (e.g. if the popup was not showing, this method would return false.)
738 * @return The currently selected item or null if the popup is not showing.
867 // the list view is actually showing its focus indicator
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
search_autocomplete.js 73 document.getElementById("search_filtered_div").className = "showing";
89 //if there are more results we're not showing, so say so.
  /external/doclava/res/assets/templates/assets/
search_autocomplete.js 73 document.getElementById("search_filtered_div").className = "showing";
89 //if there are more results we're not showing, so say so.
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 168 * showing the user the text that is being typed. Unlike the other UI elements,
434 boolean showing = onEvaluateInputViewShown();
435 mImm.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
557 * as hiding or showing candidates) without disrupting the underlying
764 // If we were last showing the soft keyboard, try to do so again.
783 boolean showing = onEvaluateInputViewShown();
784 mImm.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ListPopupWindow.java 492 boolean showing = isShowing();
493 if (showing) {
497 if (showing) {
510 * Show the popup list. If the list is already showing, this method will recalculate the popup's
631 * <p>If the popup is showing, calling this method will take effect only the next time the popup
680 * @return {@code true} if the popup is currently showing, {@code false} otherwise.
688 * with the IME while it is showing, {@code false} otherwise.
699 * showing, this method would return false.)
715 * @return The currently selected item or null if the popup is not showing.
842 // the list view is actually showing its focus indicator
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
NotificationPanel.java 105 // the "X" that appears in place of the clock when the panel is showing notifications
168 * Whether the panel is showing, or, if it's animating, whether it will be
251 public void setContentFrameVisible(final boolean showing, boolean animate) {

Completed in 1517 milliseconds

1 2 3