Searched defs:display (Results 26 - 50 of 425) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/compositor/
H A Dsurface_display_output_surface.h22 // window or physical display.
33 void set_display(cc::Display* display) { display_ = display; } argument
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_view_base_unittest.cc9 #include "ui/gfx/display.h"
16 gfx::Display display; local
17 display.SetRotationAsDegree(angle);
18 display.set_bounds(gfx::Rect(width, height));
20 return display;
26 // Square display (width == height).
28 gfx::Display display = CreateDisplay(100, 100, 0); local
30 RenderWidgetHostViewBase::GetOrientationTypeForMobile(display));
32 display = CreateDisplay(200, 200, 90);
34 RenderWidgetHostViewBase::GetOrientationTypeForMobile(display));
47 gfx::Display display = CreateDisplay(1, 0, 0); local
66 gfx::Display display = CreateDisplay(0, 1, 0); local
93 gfx::Display display = CreateDisplay(1, 0, 0); local
[all...]
/external/chromium_org/content/common/cursors/
H A Dwebcursor_aurawin.cc30 void WebCursor::SetDisplayInfo(const gfx::Display& display) { argument
H A Dwebcursor_aurax11.cc39 void WebCursor::SetDisplayInfo(const gfx::Display& display) { argument
40 if (device_scale_factor_ == display.device_scale_factor())
43 device_scale_factor_ = display.device_scale_factor();
H A Dwebcursor_ozone.cc28 void WebCursor::SetDisplayInfo(const gfx::Display& display) { argument
29 if (rotation_ == display.rotation() &&
30 device_scale_factor_ == display.device_scale_factor())
33 device_scale_factor_ = display.device_scale_factor();
34 rotation_ = display.rotation();
/external/chromium_org/extensions/shell/browser/
H A Dshell_display_info_provider.cc24 const gfx::Display& display,
23 UpdateDisplayUnitInfoForPlatform( const gfx::Display& display, extensions::core_api::system_display::DisplayUnitInfo* unit) argument
/external/chromium_org/mojo/services/surfaces/
H A Dsurfaces_service_application.cc7 #include "cc/surfaces/display.h"
44 void SurfacesServiceApplication::SetDisplay(cc::Display* display) { argument
45 display_ = display;
/external/chromium_org/remoting/host/linux/
H A Dx11_util.cc31 void IgnoreXErrors(Display* display, XErrorEvent* error) {} argument
39 int ScopedXErrorHandler::HandleXErrors(Display* display, XErrorEvent* error) { argument
42 g_handler->handler_.Run(display, error);
47 ScopedXGrabServer::ScopedXGrabServer(Display* display) argument
48 : display_(display) {
/external/chromium_org/third_party/angle/src/libEGL/
H A Dmain.h21 EGLDisplay display; member in struct:egl::Current
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
H A Dtest_context.c37 Display *display; local
44 display = XOpenDisplay(NULL);
48 display,
60 XCloseDisplay(display);
66 Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0);
67 XvGetPortAttribute(display, port_num, xv_colorkey, &colorkey);
72 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, NULL) == XvMCBadContext);
75 assert(XvMCCreateContext(display, -1, surface_type_id, width, height, XVMC_DIRECT, &context) == XvBadPort);
77 assert(XvMCCreateContext(display, port_num, -1, width, height, XVMC_DIRECT, &context) == BadMatch);
79 assert(XvMCCreateContext(display, port_nu
[all...]
H A Dtest_surface.c37 Display *display; local
45 display = XOpenDisplay(NULL);
49 display,
61 XCloseDisplay(display);
67 Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0);
68 XvGetPortAttribute(display, port_num, xv_colorkey, &colorkey);
71 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, &context) == Success);
74 assert(XvMCCreateSurface(display, NULL, &surface) == XvMCBadContext);
76 assert(XvMCCreateSurface(display, &context, NULL) == XvMCBadSurface);
78 assert(XvMCCreateSurface(display,
[all...]
/external/chromium_org/third_party/webrtc/modules/desktop_capture/mac/
H A Ddesktop_configuration_monitor.cc58 CGDirectDisplayID display,
63 monitor->DisplaysReconfigured(display, flags);
67 CGDirectDisplayID display,
71 // If this is the first display to start reconfiguring then wait on
73 // from accessing display memory until the reconfiguration completes.
80 reconfiguring_displays_.insert(display);
82 reconfiguring_displays_.erase(display);
57 DisplaysReconfiguredCallback( CGDirectDisplayID display, CGDisplayChangeSummaryFlags flags, void *user_parameter) argument
66 DisplaysReconfigured( CGDirectDisplayID display, CGDisplayChangeSummaryFlags flags) argument
/external/chromium_org/third_party/webrtc/modules/desktop_capture/x11/
H A Dshared_x_display.cc19 SharedXDisplay::SharedXDisplay(Display* display) argument
20 : display_(display) {
32 Display* display = local
34 if (!display) {
35 LOG(LS_ERROR) << "Unable to open display";
38 return new SharedXDisplay(display);
71 int events_to_process = XPending(display());
75 XNextEvent(display(), &e);
H A Dshared_x_display.h38 // Takes ownership of |display|.
39 explicit SharedXDisplay(Display* display);
46 // Creates X11 Display connection for the default display (e.g. specified in
56 Display* display() { return display_; } function in class:webrtc::SharedXDisplay
/external/chromium_org/ui/events/platform/x11/
H A Dx11_event_source.h26 explicit X11EventSource(XDisplay* display);
47 XDisplay* display() { return display_; } function in class:ui::X11EventSource
/external/chromium_org/ui/events/x/
H A Ddevice_list_cache_x.cc47 void DeviceListCacheX::UpdateDeviceList(Display* display) { argument
48 XDeviceList& new_x_dev_list = x_dev_list_map_[display];
51 new_x_dev_list.devices = XListInputDevices(display, &new_x_dev_list.count);
53 XIDeviceList& new_xi_dev_list = xi_dev_list_map_[display];
57 XIQueryDevice(display, XIAllDevices, &new_xi_dev_list.count) : NULL;
60 const XDeviceList& DeviceListCacheX::GetXDeviceList(Display* display) { argument
61 XDeviceList& x_dev_list = x_dev_list_map_[display];
64 x_dev_list.devices = XListInputDevices(display, &x_dev_list.count);
68 const XIDeviceList& DeviceListCacheX::GetXI2DeviceList(Display* display) { argument
69 XIDeviceList& xi_dev_list = xi_dev_list_map_[display];
[all...]
/external/chromium_org/ui/gfx/x/
H A Dx11_error_tracker.cc15 int X11ErrorHandler(Display* display, XErrorEvent* error) { argument
/external/chromium_org/ui/views/test/
H A Dx11_property_change_waiter.cc22 Display* display = gfx::GetXDisplay(); local
28 XGetWindowAttributes(display, x_window_, &attributes);
30 XSelectInput(display, x_window_, old_event_mask_ | PropertyChangeMask);
33 atom_cache_.reset(new ui::X11AtomCache(display, kAtomsToCache));
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_cursor_loader_updater_auralinux.cc10 #include "ui/gfx/display.h"
62 const gfx::Display& display,
64 LoadImageCursors(display.device_scale_factor(), loader);
61 OnDisplayUpdated( const gfx::Display& display, ui::CursorLoader* loader) argument
/external/deqp/framework/egl/
H A DegluConfigFilter.cpp35 bool ConfigFilter::match (EGLDisplay display, EGLConfig config) const argument
37 EGLint cmpValue = getConfigAttribInt(display, config, m_attribute);
103 bool FilterList::match (const EGLDisplay display, EGLConfig config) const argument
107 if (!ruleIter->match(display, config))
H A DegluUnique.cpp31 UniqueSurface::UniqueSurface (EGLDisplay display, EGLSurface surface) argument
32 : m_display (display)
43 UniqueContext::UniqueContext (EGLDisplay display, EGLContext context) argument
44 : m_display (display)
55 ScopedCurrentContext::ScopedCurrentContext (EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext context) argument
56 : m_display (display)
58 EGLU_CHECK_CALL(eglMakeCurrent(display, draw, read, context));
/external/libpng/contrib/libtests/
H A Dreadpng.c39 png_bytep row = NULL, display = NULL; local
48 if (display != NULL) free(display);
66 display = malloc(rowbytes);
68 if (row == NULL || display == NULL)
86 png_read_row(png_ptr, row, display);
95 free(display);
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
H A Dtest_context.c37 Display *display; local
44 display = XOpenDisplay(NULL);
48 display,
60 XCloseDisplay(display);
66 Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0);
67 XvGetPortAttribute(display, port_num, xv_colorkey, &colorkey);
72 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, NULL) == XvMCBadContext);
75 assert(XvMCCreateContext(display, -1, surface_type_id, width, height, XVMC_DIRECT, &context) == XvBadPort);
77 assert(XvMCCreateContext(display, port_num, -1, width, height, XVMC_DIRECT, &context) == BadMatch);
79 assert(XvMCCreateContext(display, port_nu
[all...]
H A Dtest_surface.c37 Display *display; local
45 display = XOpenDisplay(NULL);
49 display,
61 XCloseDisplay(display);
67 Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0);
68 XvGetPortAttribute(display, port_num, xv_colorkey, &colorkey);
71 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, &context) == Success);
74 assert(XvMCCreateSurface(display, NULL, &surface) == XvMCBadContext);
76 assert(XvMCCreateSurface(display, &context, NULL) == XvMCBadSurface);
78 assert(XvMCCreateSurface(display,
[all...]
/external/chromium_org/ash/touch/
H A Dtouch_transformer_controller_unittest.cc12 #include "ui/gfx/display.h"
30 // The internal display has native resolution of 2560x1700, and in
64 // External touch display has the default TouchTransformer.
91 // The internal display has native resolution of 1366x768, and in
125 // External touch display has the default TouchTransformer.
152 // The internal display has size 1366 x 768. The external display has
178 // Mapping for touch events from internal touch display:
192 // Mapping for touch events from external touch display:
208 DisplayInfo display local
[all...]

Completed in 2426 milliseconds

1234567891011>>