Searched refs:window_pos (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/ui/views/widget/
H A Dwidget_hwnd_utils.h25 bool DidClientAreaSizeChange(const WINDOWPOS* window_pos);
H A Dwidget_hwnd_utils.cc145 bool DidClientAreaSizeChange(const WINDOWPOS* window_pos) { argument
146 return !(window_pos->flags & SWP_NOSIZE) ||
147 window_pos->flags & SWP_FRAMECHANGED;
/external/chromium_org/remoting/host/
H A Dsingle_window_input_injector_mac.cc83 webrtc::DesktopVector window_pos(window_rect.origin.x,
89 window_pos.subtract(
98 window_pos.set(window_pos.x() * desktop_config.dip_to_pixel_scale,
99 window_pos.y() * desktop_config.dip_to_pixel_scale);
103 modified_event.set_x(event.x() + window_pos.x());
104 modified_event.set_y(event.y() + window_pos.y());
/external/chromium_org/ui/platform_window/win/
H A Dwin_window.cc163 void WinWindow::OnWindowPosChanged(WINDOWPOS* window_pos) { argument
164 if (!(window_pos->flags & SWP_NOSIZE) ||
165 !(window_pos->flags & SWP_NOMOVE)) {
169 gfx::Rect(window_pos->x, window_pos->y,
H A Dwin_window.h70 void OnWindowPosChanged(WINDOWPOS* window_pos);
/external/chromium_org/tools/site_compare/
H A Dsite_compare.py38 window_pos=(0, 0), timeout=20, save_path=None, **kwargs):
45 window_pos: location of browser window
73 scraper.Scrape(urls, full_path, window_size, window_pos, timeout, kwargs)
/external/chromium_org/ash/display/
H A Dscreen_position_controller_unittest.cc101 const gfx::Point window_pos(100, 100);
103 gfx::Rect(window_pos, gfx::Size(100, 100)),
104 Shell::GetScreen()->GetDisplayNearestPoint(window_pos));
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dbrowser_desktop_window_tree_host_win.cc216 WINDOWPOS* window_pos = reinterpret_cast<WINDOWPOS*>(l_param); local
217 if (window_pos->flags & SWP_SHOWWINDOW && GetWidget()->non_client_view()) {
/external/chromium_org/ui/views/win/
H A Dhwnd_message_handler.cc2211 void HWNDMessageHandler::OnWindowPosChanging(WINDOWPOS* window_pos) { argument
2215 if (!(window_pos->flags & ((IsVisible() ? SWP_HIDEWINDOW : SWP_SHOWWINDOW) |
2217 (window_pos->flags & (SWP_NOZORDER | SWP_NOACTIVATE))) {
2219 window_pos->flags |= SWP_NOSIZE | SWP_NOMOVE | SWP_NOREDRAW;
2220 window_pos->flags &= ~(SWP_SHOWWINDOW | SWP_HIDEWINDOW);
2241 // |window_pos| and recalculate it based on the new work rect.
2253 window_pos->x = new_window_rect.x();
2254 window_pos->y = new_window_rect.y();
2255 window_pos->cx = new_window_rect.width();
2256 window_pos
2294 OnWindowPosChanged(WINDOWPOS* window_pos) argument
[all...]
H A Dhwnd_message_handler.h460 void OnWindowPosChanging(WINDOWPOS* window_pos);
461 void OnWindowPosChanged(WINDOWPOS* window_pos);

Completed in 273 milliseconds