Searched refs:visible (Results 1 - 25 of 777) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DBarProp.idl30 readonly attribute boolean visible;
/external/chromium_org/content/browser/renderer_host/
H A Ddelegated_frame_evictor.cc15 void DelegatedFrameEvictor::SwappedFrame(bool visible) { argument
17 RendererFrameManager::GetInstance()->AddFrame(this, visible);
25 void DelegatedFrameEvictor::SetVisible(bool visible) { argument
27 RendererFrameManager::GetInstance()->SetFrameVisibility(this, visible);
H A Drenderer_frame_manager.cc17 bool visible) {
19 if (visible)
32 bool visible) {
33 if (visible) {
16 AddFrame(RendererFrameManagerClient* frame, bool visible) argument
31 SetFrameVisibility(RendererFrameManagerClient* frame, bool visible) argument
H A Ddelegated_frame_evictor.h25 void SwappedFrame(bool visible);
27 void SetVisible(bool visible);
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dfocus_outline_manager.js10 const CLASS_NAME = 'focus-outline-visible';
19 * html.focus-outline-visible my-element:focus {
34 self.visible = true;
38 self.visible = false;
44 * Whether the focus outline should be visible.
47 set visible(visible) {
48 if (visible)
53 get visible() {
/external/chromium_org/content/common/
H A Dwebplugin_geometry.cc12 visible(false) {
24 visible == rhs.visible;
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Doobe_screen_update.js43 * Makes 'press Escape to cancel update' hint visible.
59 * @param {boolean} visible Are ETA message visible?
61 showEstimatedTimeLeft: function(visible) {
62 $('progress-message').hidden = visible;
63 $('estimated-time-left').hidden = !visible;
92 * @param {boolean} visible Are message visible?
94 showProgressMessage: function(visible) {
95 $('estimated-time-left').hidden = visible;
[all...]
/external/clang/test/Modules/
H A Dmacros.c22 # error INTEGER macro should be visible
26 # error FLOAT macro should not be visible
30 # error MODULE macro should not be visible
54 // their macros should not be visible.
56 # error LEFT should not be visible
60 # error RIGHT should not be visible
64 # error TOP should not be visible
71 # error LEFT should be visible
75 # error RIGHT should not be visible
79 # error TOP should be visible
[all...]
/external/chromium_org/content/common/gpu/
H A Dgpu_memory_manager_client.cc16 bool visible)
21 visible_(visible),
37 void GpuMemoryManagerClientState::SetVisible(bool visible) { argument
38 memory_manager_->SetClientStateVisible(this, visible);
11 GpuMemoryManagerClientState( GpuMemoryManager* memory_manager, GpuMemoryManagerClient* client, GpuMemoryTrackingGroup* tracking_group, bool has_surface, bool 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/chromium_org/chrome/browser/resources/help/
H A Dhelp_base_page.js74 * @param {boolean} visible True if overlay should be displayed.
77 setOverlayVisible_: function(visible) {
79 this.container.hidden = !visible;
80 if (visible)
87 * @return {HTMLDivElement} visible non-overlay page or
88 * null, if there are no visible non-overlay pages.
92 if (this.isOverlay || !this.visible)
99 * if there are no visible overlay pages.
105 if (overlay.visible)
144 * @return {HTMLDivElement} Topmost visible pag
[all...]
/external/chromium-trace/trace-viewer/src/ui/
H A Doverlay_test.js14 overlay.visible = true;
17 overlay.visible = false;
27 overlay.visible = true;
30 overlay.visible = false;
H A Dinfo_bar.js27 this.visible = false;
38 get visible() {
42 set visible(visible) {
43 if (visible)
H A Dinfo_bar_test.js13 infoBar.visible = true;
19 infoBar.visible = true;
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dcookies_view_browsertest.js28 assertTrue(cookiesView.visible);
35 assertTrue(cookiesView.visible);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageVisibilityState.cpp38 DEFINE_STATIC_LOCAL(const String, visible, ("visible"));
44 return visible;
/external/chromium_org/ui/base/ime/chromeos/
H A Dmock_ime_candidate_window_handler.cc21 bool visible) {
24 last_update_lookup_table_arg_.is_visible = visible;
28 bool visible) {
31 last_update_auxiliary_text_arg_.is_visible = visible;
36 bool visible) {
19 UpdateLookupTable( const input_method::CandidateWindow& table, bool visible) argument
27 UpdateAuxiliaryText(const std::string& text, bool visible) argument
34 UpdatePreeditText(const std::string& text, uint32 cursor_pos, bool visible) argument
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dfocus_outline_manager.js11 var CLASS_NAME = 'focus-outline-visible';
20 * html.focus-outline-visible my-element:focus {
44 self.visible = self.focusByKeyboard_;
57 * Whether the focus outline should be visible.
60 set visible(visible) {
61 if (visible)
66 get visible() {
/external/chromium_org/ui/views/corewm/
H A Dvisibility_controller.cc37 bool visible) {
38 return AnimateOnChildWindowVisibilityChanged(window, visible);
42 bool visible) {
47 CallAnimateOnChildWindowVisibilityChanged(window, visible);
49 if (!visible) {
58 // When a window is made visible, we always make its layer visible
59 // immediately. When a window is hidden, the layer must be left visible and
60 // only made not visible once the animation is complete.
61 if (!animated || visible)
35 CallAnimateOnChildWindowVisibilityChanged( aura::Window* window, bool visible) argument
41 UpdateLayerVisibility(aura::Window* window, bool visible) argument
[all...]
H A Dcursor_manager.cc34 bool visible() const { return visible_; } function in class:views::corewm::internal::CursorState
35 void SetVisible(bool visible) { argument
37 visible_ = visible;
106 IsCursorVisible() != state_on_unlock_->visible()) {
107 delegate_->SetVisibility(state_on_unlock_->visible(), this);
116 IsCursorVisible() != state_on_unlock_->visible()) {
117 delegate_->SetVisibility(state_on_unlock_->visible(), this);
124 return current_state_->visible();
190 if (IsCursorVisible() != state_on_unlock_->visible()) {
191 delegate_->SetVisibility(state_on_unlock_->visible(),
214 CommitVisibility(bool visible) argument
[all...]
/external/chromium_org/tools/perf/page_sets/tough_scrolling_cases/
H A Dbusy.js9 function visible() { function
28 if (!visible())
35 if (visible() && !timerId)
/external/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bar_view_unittest.cc54 EXPECT_FALSE(bookmark_bar_view.apps_page_shortcut_->visible());
56 // Try to make the Apps shortcut visible. Its visibility depends on whether
61 EXPECT_FALSE(bookmark_bar_view.apps_page_shortcut_->visible());
63 EXPECT_TRUE(bookmark_bar_view.apps_page_shortcut_->visible());
69 EXPECT_FALSE(bookmark_bar_view.apps_page_shortcut_->visible());
/external/jmonkeyengine/engine/src/core/com/jme3/input/dummy/
H A DDummyMouseInput.java45 public void setCursorVisible(boolean visible) { argument
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Daccounts_options_browsertest.js30 // Overlay is visible.
31 assertTrue(accountsOptionsPage.visible);
38 // Verify the overlay is still visible.
39 assertTrue(accountsOptionsPage.visible);
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dimmersive_mode_controller_ash_unittest.cc110 // By default, the tabstrip and toolbar should be visible.
111 EXPECT_TRUE(tabstrip->visible());
112 EXPECT_TRUE(toolbar->visible());
121 EXPECT_TRUE(tabstrip->visible());
123 EXPECT_FALSE(toolbar->visible());
136 EXPECT_TRUE(tabstrip->visible());
138 EXPECT_TRUE(toolbar->visible());
156 // The tab strip and toolbar should still be visible and the TopContainerView
159 EXPECT_TRUE(tabstrip->visible());
161 EXPECT_TRUE(toolbar->visible());
[all...]

Completed in 702 milliseconds

1234567891011>>