Searched defs:IsVisible (Results 1 - 25 of 47) sorted by relevance

12

/external/chromium_org/chrome/browser/
H A Dplatform_util_aura.cc41 bool IsVisible(gfx::NativeView view) { function in namespace:platform_util
42 return view->IsVisible();
H A Dplatform_util_android.cc44 bool IsVisible(gfx::NativeView view) { function in namespace:platform_util
H A Dplatform_util_win.cc231 bool IsVisible(gfx::NativeView view) { function in namespace:platform_util
/external/chromium_org/ppapi/cpp/
H A Dview.cc63 bool View::IsVisible() const { function in class:pp::View
65 return PP_ToBool(get_interface<PPB_View_1_2>()->IsVisible(pp_resource()));
67 return PP_ToBool(get_interface<PPB_View_1_1>()->IsVisible(pp_resource()));
69 return PP_ToBool(get_interface<PPB_View_1_0>()->IsVisible(pp_resource()));
/external/chromium_org/ui/message_center/views/
H A Dmessage_bubble_base.cc52 bool MessageBubbleBase::IsVisible() const { function in class:message_center::MessageBubbleBase
53 return bubble_view() && bubble_view()->GetWidget()->IsVisible();
/external/chromium_org/ppapi/c/
H A Dppb_view.h90 * IsVisible() determines whether the module instance might be visible to
93 * would not be visible to the user, but IsVisible() will return true.
108 PP_Bool (*IsVisible)(PP_Resource resource); member in struct:PPB_View_1_2
114 * Most applications should use IsVisible() instead of this function since
138 * IsPageVisible() and IsVisible() if you want to account for page
143 * visible, as determined by IsVisible(), and do no updates if it is not
223 PP_Bool (*IsVisible)(PP_Resource resource); member in struct:PPB_View_1_0
232 PP_Bool (*IsVisible)(PP_Resource resource); member in struct:PPB_View_1_1
/external/chromium_org/athena/content/
H A Dapp_activity_proxy.cc47 bool AppActivityProxy::IsVisible() { function in class:athena::AppActivityProxy
H A Dapp_activity.cc84 bool AppActivity::IsVisible() { function in class:athena::AppActivity
/external/chromium_org/athena/test/
H A Dsample_activity.cc40 bool SampleActivity::IsVisible() { function in class:athena::test::SampleActivity
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Dbookmark_browsertest.cc35 bool IsVisible() { function in class:BookmarkBrowsertest
68 ASSERT_FALSE(IsVisible());
72 ASSERT_TRUE(IsVisible());
76 ASSERT_FALSE(IsVisible());
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_node.cc51 bool BookmarkNode::IsVisible() const { function in class:BookmarkNode
133 bool BookmarkPermanentNode::IsVisible() const { function in class:BookmarkPermanentNode
/external/chromium_org/ppapi/shared_impl/
H A Dppb_view_shared.cc65 PP_Bool PPB_View_Shared::IsVisible() const { function in class:ppapi::PPB_View_Shared
/external/chromium_org/ppapi/thunk/
H A Dppb_view_thunk.cc41 PP_Bool IsVisible(PP_Resource resource) { function in namespace:ppapi::thunk::__anon10327
42 VLOG(4) << "PPB_View::IsVisible()";
46 return enter.object()->IsVisible();
93 &IsVisible,
102 &IsVisible,
113 &IsVisible,
/external/chromium_org/ui/views/corewm/
H A Dtooltip_win.cc146 bool TooltipWin::IsVisible() { function in class:views::corewm::TooltipWin
H A Dtooltip_aura.cc227 bool TooltipAura::IsVisible() { function in class:views::corewm::TooltipAura
228 return widget_ && widget_->IsVisible();
/external/chromium_org/chrome/browser/ui/views/
H A Ddropdown_bar_host.cc105 if (!IsVisible())
131 bool DropdownBarHost::IsVisible() const { function in class:DropdownBarHost
/external/chromium_org/third_party/webrtc/base/
H A Dwin32windowpicker.cc135 bool Win32WindowPicker::IsVisible(const WindowId& id) { function in class:rtc::Win32WindowPicker
H A Dmacwindowpicker.cc73 bool MacWindowPicker::IsVisible(const WindowId& id) { function in class:rtc::MacWindowPicker
/external/chromium_org/ash/shelf/
H A Dshelf.cc142 bool Shelf::IsVisible() const { function in class:ash::Shelf
H A Dshelf_tooltip_manager.cc171 if (shelf_layout_manager_ && !shelf_layout_manager_->IsVisible())
187 if (shelf_layout_manager_ && !shelf_layout_manager_->IsVisible())
225 if (shelf_layout_manager_ && !shelf_layout_manager_->IsVisible())
235 bool ShelfTooltipManager::IsVisible() { function in class:ash::ShelfTooltipManager
239 return widget_ && widget_->IsVisible();
249 if (!widget_ || !widget_->IsVisible())
281 if (widget_ && widget_->IsVisible() && widget_->GetNativeWindow() != target)
286 if (widget_ && widget_->IsVisible()) {
/external/chromium_org/ash/system/tray/
H A Dsystem_tray_bubble.cc337 bool SystemTrayBubble::IsVisible() { function in class:ash::SystemTrayBubble
338 return bubble_view() && bubble_view()->GetWidget()->IsVisible();
/external/chromium_org/chrome/browser/chromeos/ui/
H A Didle_app_name_notification_view.cc240 bool IdleAppNameNotificationView::IsVisible() { function in class:chromeos::IdleAppNameNotificationView
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dapp_shortcut_launcher_item_controller.cc87 bool AppShortcutLauncherItemController::IsVisible() const { function in class:AppShortcutLauncherItemController
93 if (browser && browser->window()->GetNativeWindow()->IsVisible())
H A Dapp_window_launcher_item_controller.cc121 bool AppWindowLauncherItemController::IsVisible() const { function in class:AppWindowLauncherItemController
126 if ((*iter)->GetNativeWindow()->IsVisible())
290 if (type() == TYPE_APP_PANEL && IsVisible())
H A Dbrowser_shortcut_launcher_item_controller.cc131 bool BrowserShortcutLauncherItemController::IsVisible() const { function in class:BrowserShortcutLauncherItemController

Completed in 1654 milliseconds

12