Searched defs:visible (Results 1 - 25 of 102) sorted by relevance

12345

/external/webkit/Source/WebCore/page/
H A DBarInfo.cpp59 bool BarInfo::visible() const function in class:WebCore::BarInfo
/external/jmonkeyengine/engine/src/core/com/jme3/input/dummy/
H A DDummyMouseInput.java45 public void setCursorVisible(boolean visible) { argument
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DMouseInput.java71 * Set whether the mouse cursor should be visible or not.
73 * @param visible Whether the mouse cursor should be visible or not.
75 public void setCursorVisible(boolean visible); argument
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptProfileNode.cpp80 bool ScriptProfileNode::visible() const function in class:WebCore::ScriptProfileNode
/external/chromium/chrome/browser/automation/
H A Dtesting_automation_provider_win.cc72 bool visible,
76 ::ShowWindow(hwnd, visible ? SW_SHOW : SW_HIDE);
71 SetWindowVisible(int handle, bool visible, bool* result) argument
H A Dtesting_automation_provider_gtk.cc81 bool visible,
86 if (visible) {
80 SetWindowVisible(int handle, bool visible, bool* result) argument
/external/chromium/chrome/browser/chromeos/login/
H A Ddom_login_display_host.cc34 void DOMLoginDisplayHost::SetOobeProgressBarVisible(bool visible) {} argument
40 void DOMLoginDisplayHost::SetStatusAreaVisible(bool visible) {} argument
H A Dviews_login_display_host.cc45 void ViewsLoginDisplayHost::SetOobeProgressBarVisible(bool visible) { argument
47 background_view_->SetOobeProgressBarVisible(visible);
60 void ViewsLoginDisplayHost::SetStatusAreaVisible(bool visible) { argument
62 background_view_->SetStatusAreaVisible(visible);
H A Dupdate_view.cc139 void UpdateView::ShowPreparingUpdatesInfo(bool visible) { argument
140 show_preparing_updates_label_ = visible;
/external/chromium/chrome/browser/chromeos/notifications/
H A Dsystem_notification.h59 bool visible() const { return visible_; } function in class:chromeos::SystemNotification
/external/chromium/chrome/browser/
H A Dcontent_setting_image_model.h41 void set_visible(bool visible) { is_visible_ = visible; } argument
/external/chromium/chrome/browser/extensions/
H A Dextension_page_actions_module.cc120 bool PageActionFunction::SetVisible(bool visible) { argument
126 page_action_->SetIsVisible(tab_id, visible);
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
H A DLwjglMouseInput.java137 public void setCursorVisible(boolean visible){ argument
138 cursorVisible = visible;
142 Mouse.setGrabbed(!visible);
/external/webkit/Source/WebCore/platform/
H A DPopupMenuStyle.h38 PopupMenuStyle(const Color& foreground, const Color& background, const Font& font, bool visible, bool isDisplayNone, Length textIndent, TextDirection textDirection, bool hasTextDirectionOverride) argument
42 , m_visible(visible)
/external/chromium/chrome/browser/ui/gtk/
H A Dgtk_chrome_shrinkable_hbox_unittest.cc70 if (children_data[i].visible)
84 // If the |box_| is in homogeneous mode, then check if the visible
92 << " visible: " << children_data[i].visible
97 if (children_data[i].visible)
102 // visible children are inside the |box_|'s boundary. And for those
109 << " visible: " << children_data[i].visible
114 if (last_visible != children_data[i].visible) {
117 last_visible = children_data[i].visible;
189 bool visible; member in struct:GtkChromeShrinkableHBoxTest::ChildData
[all...]
H A Dstatus_bubble_gtk.cc233 void StatusBubbleGtk::UpdateDownloadShelfVisibility(bool visible) { argument
234 download_shelf_is_visible_ = visible;
/external/chromium/chrome/browser/ui/views/
H A Dbrowser_bubble.h76 bool visible() const { return visible_; } function in class:BrowserBubble
/external/icu4c/common/
H A Dservlkf.cpp73 UBool visible = (_coverage & 0x1) == 0; local
79 if (!visible) {
H A Dservls.cpp97 UBool visible, UErrorCode& status)
102 visible ? LocaleKeyFactory::VISIBLE : LocaleKeyFactory::INVISIBLE, status);
136 ICULocaleService::registerInstance(UObject* objToAdopt, const UnicodeString& locale, UBool visible, UErrorCode& status)
139 visible ? LocaleKeyFactory::VISIBLE : LocaleKeyFactory::INVISIBLE,
96 registerInstance(UObject* objToAdopt, const UnicodeString& locale, UBool visible, UErrorCode& status) argument
/external/qemu/distrib/sdl-1.2.15/test/
H A Dthreadwin.c14 /* Is the cursor visible? */
15 static int visible = 1; variable
146 visible = !visible;
147 SDL_ShowCursor(visible);
H A Dtestwm.c10 /* Is the cursor visible? */
11 static int visible = 1; variable
266 visible = !visible;
267 SDL_ShowCursor(visible);
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_tiled_backing_store.h63 * repainted at all since it was not visible.
87 int visible; /**< visibility counter of this tile */ member in struct:_Ewk_Tile
/external/chromium/chrome/browser/ui/views/frame/
H A Dbrowser_view_layout.cc32 // The visible height of the shadow above the tabs. Clicks in this area are
94 // be visible but not persistent (in the New Tab case) and we
315 bool visible = browser_view_->IsToolbarVisible(); local
316 toolbar_->location_bar()->SetFocusable(visible);
319 y -= ((visible && browser_view_->IsTabStripVisible()) ?
322 int height = visible ? toolbar_->GetPreferredSize().height() : 0;
323 toolbar_->SetVisible(visible);
508 // Re-layout the shelf either if it is visible or if it's close animation
512 bool visible = browser()->SupportsWindowFeature( local
515 int height = visible
[all...]
/external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/
H A DAwtMouseInput.java61 private boolean visible = true; field in class:AwtMouseInput
143 public void setCursorVisible(boolean visible){ argument
144 if (this.visible != visible){
148 this.visible = visible;
149 final boolean newVisible = visible;
239 if (!visible)
244 if (!visible)
275 if (!visible) {
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DSpriteComponent.java198 public final void setVisible(boolean visible) { argument
199 mVisible = visible;

Completed in 476 milliseconds

12345