Searched defs:monitor_rect (Results 1 - 10 of 10) sorted by relevance

/external/chromium/chrome/browser/ui/views/tabs/
H A Dnative_view_photobooth_win.cc17 RECT* monitor_rect, LPARAM data) {
19 if (monitor_rect->right > point->x() && monitor_rect->bottom > point->y()) {
20 point->set_x(monitor_rect->right);
21 point->set_y(monitor_rect->bottom);
16 MonitorEnumProc(HMONITOR monitor, HDC monitor_dc, RECT* monitor_rect, LPARAM data) argument
/external/chromium/chrome/browser/ui/
H A Dwindow_sizer_win.cc61 LPRECT monitor_rect,
59 MonitorEnumProc(HMONITOR monitor, HDC monitor_dc, LPRECT monitor_rect, LPARAM data) argument
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dnative_view_photobooth_win.cc16 RECT* monitor_rect, LPARAM data) {
18 if (monitor_rect->right > point->x() && monitor_rect->bottom > point->y()) {
19 point->set_x(monitor_rect->right);
20 point->set_y(monitor_rect->bottom);
15 MonitorEnumProc(HMONITOR monitor, HDC monitor_dc, RECT* monitor_rect, LPARAM data) argument
/external/chromium_org/content/browser/renderer_host/
H A Dgtk_window_utils.cc77 GdkRectangle monitor_rect; local
78 gdk_screen_get_monitor_geometry(screen, monitor_number, &monitor_rect);
79 results->rect = blink::WebRect(monitor_rect.x, monitor_rect.y,
80 monitor_rect.width, monitor_rect.height);
H A Drender_widget_host_view_gtk.cc675 GdkRectangle monitor_rect; local
676 gdk_screen_get_monitor_geometry(screen, monitor_id, &monitor_rect);
677 bounds = gfx::Rect(monitor_rect);
/external/chromium_org/ash/shelf/
H A Doverflow_bubble_view.cc117 const gfx::Rect monitor_rect = Shell::GetScreen()->GetDisplayNearestPoint( local
119 if (!monitor_rect.IsEmpty()) {
123 static_cast<int>(monitor_rect.width() *
128 static_cast<int>(monitor_rect.height() *
202 gfx::Rect monitor_rect = Shell::GetScreen()->GetDisplayNearestPoint( local
207 if (bubble_rect.x() < monitor_rect.x())
208 offset = monitor_rect.x() - bubble_rect.x();
209 else if (bubble_rect.right() > monitor_rect.right())
210 offset = monitor_rect.right() - bubble_rect.right();
215 if (bubble_rect.y() < monitor_rect
[all...]
/external/chromium/chrome/browser/ui/views/
H A Dstatus_bubble_views.cc758 gfx::Rect monitor_rect = local
762 if (bubble_bottom_y + offset > monitor_rect.height() ||
/external/chromium_org/chrome/browser/ui/views/
H A Dstatus_bubble_views.cc778 gfx::Rect monitor_rect = gfx::Screen::GetScreenFor(window)-> local
782 if (bubble_bottom_y + offset > monitor_rect.height() ||
/external/chromium_org/ui/base/x/
H A Dx11_util.cc1326 GdkRectangle monitor_rect;
1327 gdk_screen_get_monitor_geometry(gdk_screen_get_default(), 0, &monitor_rect); local
1329 return monitor_rect.x == window_rect.x() &&
1330 monitor_rect.y == window_rect.y() &&
1331 monitor_rect.width == window_rect.width() &&
1332 monitor_rect.height == window_rect.height();
/external/chromium_org/ui/views/win/
H A Dhwnd_message_handler.cc179 gfx::Rect* monitor_rect,
182 DCHECK(monitor_rect);
190 *monitor_rect = gfx::Rect(monitor_info.rcMonitor);
2319 gfx::Rect monitor_rect, work_area; local
2321 GetMonitorAndRects(window_rect, &monitor, &monitor_rect, &work_area)) {
2322 bool work_area_changed = (monitor_rect == last_monitor_rect_) &&
2338 new_window_rect = monitor_rect;
2366 last_monitor_rect_ = monitor_rect;
177 GetMonitorAndRects(const RECT& rect, HMONITOR* monitor, gfx::Rect* monitor_rect, gfx::Rect* work_area) argument

Completed in 202 milliseconds