Searched refs:wm (Results 26 - 50 of 222) sorted by relevance

123456789

/external/chromium_org/ash/wm/workspace/
H A Dsnap_sizer.h16 namespace wm { namespace in namespace:ash
40 SnapSizer(wm::WindowState* window_state,
47 static void SnapWindow(wm::WindowState* window_state, Edge edge);
91 wm::WindowState* window_state_;
H A Dworkspace_event_handler.cc5 #include "ash/wm/workspace/workspace_event_handler.h"
11 #include "ash/wm/coordinate_conversion.h"
12 #include "ash/wm/window_state.h"
13 #include "ash/wm/window_util.h"
14 #include "ash/wm/workspace/workspace_window_resizer.h"
27 void SingleAxisMaximize(wm::WindowState* window_state,
33 void SingleAxisUnmaximize(wm::WindowState* window_state,
39 void ToggleMaximizedState(wm::WindowState* window_state) {
86 wm::WindowState* target_state = wm
[all...]
H A Dworkspace_layout_manager.cc5 #include "ash/wm/workspace/workspace_layout_manager.h"
12 #include "ash/wm/always_on_top_controller.h"
13 #include "ash/wm/base_layout_manager.h"
14 #include "ash/wm/window_animations.h"
15 #include "ash/wm/window_positioner.h"
16 #include "ash/wm/window_properties.h"
17 #include "ash/wm/window_state.h"
18 #include "ash/wm/window_util.h"
39 void MoveToDisplayForRestore(wm::WindowState* window_state) {
88 AdjustWindowBoundsWhenAdded(wm
[all...]
/external/chromium_org/ash/wm/
H A Dbase_layout_manager.h12 #include "ash/wm/window_state_observer.h"
26 namespace wm { namespace in namespace:ash
42 public wm::WindowStateObserver {
80 // wm::WindowStateObserver overrides:
81 virtual void OnWindowShowTypeChanged(wm::WindowState* window_state,
82 wm::WindowShowType type) OVERRIDE;
91 virtual void ShowStateChanged(wm::WindowState* window_state,
108 wm::WindowState* window_state,
115 void UpdateBoundsFromShowState(wm::WindowState* controller);
H A Dbase_layout_manager.cc5 #include "ash/wm/base_layout_manager.h"
11 #include "ash/wm/window_animations.h"
12 #include "ash/wm/window_properties.h"
13 #include "ash/wm/window_state.h"
14 #include "ash/wm/window_util.h"
15 #include "ash/wm/workspace/workspace_window_resizer.h"
71 wm::WindowState* window_state = wm::GetWindowState(child);
83 wm::GetWindowState(child)->RemoveObserver(this);
91 wm
[all...]
H A Dworkspace_controller_unittest.cc5 #include "ash/wm/workspace_controller.h"
19 #include "ash/wm/window_state.h"
20 #include "ash/wm/window_util.h"
105 wm::WindowState* window_state = wm::GetWindowState(window);
147 wm::WindowState* window_state = wm::GetWindowState(w1.get());
169 wm::ActivateWindow(w1.get());
171 EXPECT_TRUE(wm::IsActiveWindow(w1.get()));
181 EXPECT_TRUE(wm
[all...]
H A Dapp_list_controller_unittest.cc9 #include "ash/wm/window_util.h"
24 wm::ActivateWindow(window.get());
40 wm::ActivateWindow(window.get());
H A Dsystem_modal_container_layout_manager_unittest.cc5 #include "ash/wm/system_modal_container_layout_manager.h"
12 #include "ash/wm/window_util.h"
175 EXPECT_TRUE(wm::IsActiveWindow(parent.get()));
185 EXPECT_TRUE(wm::IsActiveWindow(t1));
190 EXPECT_TRUE(wm::IsActiveWindow(t1));
197 EXPECT_TRUE(wm::IsActiveWindow(t2));
205 EXPECT_TRUE(wm::IsActiveWindow(t2));
216 EXPECT_TRUE(wm::IsActiveWindow(t1.get()));
224 EXPECT_TRUE(wm::IsActiveWindow(t1.get()));
230 EXPECT_TRUE(wm
[all...]
H A Dwindow_positioner.cc5 #include "ash/wm/window_positioner.h"
11 #include "ash/wm/mru_window_tracker.h"
12 #include "ash/wm/window_resizer.h"
13 #include "ash/wm/window_state.h"
14 #include "ash/wm/window_util.h"
60 const wm::WindowState* window_state = wm::GetWindowState(window);
70 const wm::WindowState* window_state = wm::GetWindowState(window);
135 wm
[all...]
H A Dcoordinate_conversion.h20 namespace wm { namespace in namespace:ash
40 } // namespace wm
/external/chromium_org/ash/wm/overview/
H A Dwindow_selector_unittest.cc15 #include "ash/wm/mru_window_tracker.h"
16 #include "ash/wm/overview/window_selector.h"
17 #include "ash/wm/overview/window_selector_controller.h"
18 #include "ash/wm/window_state.h"
19 #include "ash/wm/window_util.h"
123 EXPECT_FALSE(ash::wm::CanActivateWindow(window));
229 wm::ActivateWindow(window2.get());
230 EXPECT_FALSE(wm::IsActiveWindow(window1.get()));
231 EXPECT_TRUE(wm::IsActiveWindow(window2.get()));
254 EXPECT_TRUE(wm
[all...]
/external/chromium_org/ash/drag_drop/
H A Ddrag_drop_tracker.cc9 #include "ash/wm/coordinate_conversion.h"
51 wm::ConvertPointToScreen(capture_window_.get(),
54 wm::GetRootWindowAt(location_in_screen);
56 wm::ConvertPointFromScreen(root_window_at_point, &location_in_root);
68 ash::wm::ConvertPointToScreen(capture_window_.get(), &location_in_screen);
72 ash::wm::GetRootWindowAt(location_in_screen),
/external/chromium_org/ash/
H A Dfocus_cycler_unittest.cc15 #include "ash/wm/window_util.h"
137 wm::ActivateWindow(window0.get());
138 EXPECT_TRUE(wm::IsActiveWindow(window0.get()));
142 EXPECT_TRUE(wm::IsActiveWindow(window0.get()));
152 wm::ActivateWindow(window0.get());
153 EXPECT_TRUE(wm::IsActiveWindow(window0.get()));
165 EXPECT_TRUE(wm::IsActiveWindow(window0.get()));
175 wm::ActivateWindow(window0.get());
176 EXPECT_TRUE(wm::IsActiveWindow(window0.get()));
188 EXPECT_TRUE(wm
[all...]
H A Dextended_desktop_unittest.cc13 #include "ash/wm/coordinate_conversion.h"
14 #include "ash/wm/window_cycle_controller.h"
15 #include "ash/wm/window_properties.h"
16 #include "ash/wm/window_util.h"
192 EXPECT_TRUE(wm::IsActiveWindow(widget_on_2nd->GetNativeView()));
201 EXPECT_TRUE(wm::IsActiveWindow(widget_on_1st->GetNativeView()));
208 EXPECT_TRUE(wm::IsActiveWindow(widget_on_2nd->GetNativeView()));
219 EXPECT_TRUE(wm::IsActiveWindow(widget_on_1st->GetNativeView()));
229 EXPECT_TRUE(wm::IsActiveWindow(modal_widget->GetNativeView()));
238 EXPECT_TRUE(wm
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_reg_allocate.cpp89 ralloc_free(brw->wm.ra_reg_to_grf);
90 brw->wm.ra_reg_to_grf = ralloc_array(brw, uint8_t, ra_reg_count);
91 ralloc_free(brw->wm.regs);
92 brw->wm.regs = ra_alloc_reg_set(brw, ra_reg_count);
93 ralloc_free(brw->wm.classes);
94 brw->wm.classes = ralloc_array(brw, int, class_count + 1);
96 brw->wm.aligned_pairs_class = -1;
106 brw->wm.classes[i] = ra_alloc_reg_class(brw->wm.regs);
115 ra_class_add_reg(brw->wm
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_reg_allocate.cpp89 ralloc_free(brw->wm.ra_reg_to_grf);
90 brw->wm.ra_reg_to_grf = ralloc_array(brw, uint8_t, ra_reg_count);
91 ralloc_free(brw->wm.regs);
92 brw->wm.regs = ra_alloc_reg_set(brw, ra_reg_count);
93 ralloc_free(brw->wm.classes);
94 brw->wm.classes = ralloc_array(brw, int, class_count + 1);
96 brw->wm.aligned_pairs_class = -1;
106 brw->wm.classes[i] = ra_alloc_reg_class(brw->wm.regs);
115 ra_class_add_reg(brw->wm
[all...]
/external/chromium_org/ash/shelf/
H A Dshelf_window_watcher_item_delegate.cc8 #include "ash/wm/window_state.h"
29 wm::WindowState* window_state = wm::GetWindowState(window_);
/external/chromium_org/ash/shell/
H A Dwindow_watcher_shelf_item_delegate.cc8 #include "ash/wm/window_util.h"
28 wm::MoveWindowToEventRoot(window, event);
30 wm::ActivateWindow(window);
/external/chromium_org/ash/test/
H A Dtest_shelf_item_delegate.cc7 #include "ash/wm/window_util.h"
23 wm::MoveWindowToEventRoot(window_, event);
25 wm::ActivateWindow(window_);
/external/chromium_org/ash/wm/panels/
H A Dpanel_window_event_handler.cc5 #include "ash/wm/panels/panel_window_event_handler.h"
7 #include "ash/wm/window_state.h"
30 wm::GetWindowState(target)->Minimize();
42 wm::GetWindowState(target)->Minimize();
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dchrome_launcher_app_menu_item_browser.cc7 #include "ash/wm/window_util.h"
29 return browser_ == chrome::FindBrowserWithWindow(ash::wm::GetActiveWindow());
43 ash::wm::ActivateWindow(browser_->window()->GetNativeWindow());
/external/chromium_org/ui/views/examples/content_client/
H A Dexamples_browser_main_parts.h17 namespace wm { namespace
48 scoped_ptr<wm::WMTestHelper> wm_test_helper_;
/external/chromium_org/chrome/browser/ui/ash/
H A Daccelerator_commands_browsertest.cc11 #include "ash/wm/window_state.h"
52 bool IsInImmersiveFullscreen(ash::wm::WindowState* window_state) {
70 ash::wm::WindowState* window_state = ash::wm::GetActiveWindowState();
121 void SetToInitialShowState(ash::wm::WindowState* window_state) {
129 bool IsInitialShowState(const ash::wm::WindowState* window_state) const {
162 ash::wm::WindowState* window_state =
163 ash::wm::GetWindowState(browser()->window()->GetNativeWindow());
190 ash::wm::GetWindowState(app_host_browser->window()->GetNativeWindow());
210 ash::wm
[all...]
/external/chromium_org/ash/metrics/
H A Duser_metrics_recorder.cc11 #include "ash/wm/window_state.h"
386 wm::WindowState* active_window_state = ash::wm::GetActiveWindowState();
389 case wm::SHOW_TYPE_MAXIMIZED:
392 case wm::SHOW_TYPE_FULLSCREEN:
395 case wm::SHOW_TYPE_LEFT_SNAPPED:
396 case wm::SHOW_TYPE_RIGHT_SNAPPED:
399 case wm::SHOW_TYPE_DEFAULT:
400 case wm::SHOW_TYPE_NORMAL:
401 case wm
[all...]
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dimmersive_mode_controller_ash.h10 #include "ash/wm/immersive_fullscreen_controller.h"
11 #include "ash/wm/window_state_observer.h"
24 public ash::wm::WindowStateObserver,
71 // ash::wm::WindowStateObserver override:
73 ash::wm::WindowState* window_state,
74 ash::wm::WindowShowType old_type) OVERRIDE;

Completed in 526 milliseconds

123456789