Searched defs:display (Results 301 - 325 of 425) sorted by relevance

<<11121314151617

/external/chromium_org/ash/wm/panels/
H A Dpanel_layout_manager_unittest.cc100 gfx::Display display = ScreenUtil::FindDisplayContainingPoint(root_point); local
106 gfx::Rect display_bounds = display.bounds();
618 // Test a panel on 1st display.
619 // Clicking on the same display has no effect.
628 // Test if clicking on another display moves the panel to
629 // that display.
638 // Test a panel on 2nd display.
639 // Clicking on the same display has no effect.
648 // Test if clicking on another display moves the panel to
649 // that display
[all...]
/external/chromium_org/ash/wm/
H A Dwindow_positioner.cc250 // Always open new window in the target display.
413 const gfx::Display& display) {
414 const gfx::Rect work_area = display.work_area();
412 GetDefaultWindowBounds( const gfx::Display& display) argument
/external/chromium_org/content/browser/media/capture/
H A Dweb_contents_video_capture_device.cc85 #include "ui/gfx/display.h"
671 const gfx::Display display = screen->GetDisplayNearestWindow(view); local
672 const float scale = display.device_scale_factor();
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_view_base.cc15 #include "ui/gfx/display.h"
399 gfx::Display display = local
402 display.device_scale_factor()));
525 gfx::Display display = local
527 if (current_display_area_ == display.work_area() &&
528 current_device_scale_factor_ == display.device_scale_factor() &&
529 current_display_rotation_ == display.rotation()) {
533 current_display_area_ = display.work_area();
534 current_device_scale_factor_ = display.device_scale_factor();
535 current_display_rotation_ = display
618 GetOrientationTypeForMobile( const gfx::Display& display) argument
651 GetOrientationTypeForDesktop( const gfx::Display& display) argument
[all...]
/external/chromium_org/content/common/gpu/media/
H A Drendering_helper.cc143 Display* display = gfx::GetXDisplay(); local
144 Screen* screen = DefaultScreenOfDisplay(display);
147 CHECK(display);
152 BlackPixel(display, DefaultScreen(display));
154 int depth = DefaultDepth(display, DefaultScreen(display));
156 window_ = XCreateWindow(display,
157 DefaultRootWindow(display),
168 XStoreName(display, window
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dasync_pixel_transfer_manager_egl.cc355 EGLDisplay display = eglGetCurrentDisplay(); local
356 eglDestroyImageKHR(display, egl_image_);
H A Dtexture_definition.cc121 NativeImageBufferEGL(EGLDisplay display, EGLImageKHR image);
178 NativeImageBufferEGL::NativeImageBufferEGL(EGLDisplay display, argument
181 egl_display_(display),
/external/chromium_org/remoting/webapp/
H A Dhost_list.js23 * @param {Element} errorMsg The HTML <div> to display error messages.
24 * @param {Element} errorButton The HTML <button> to display the error
100 that.refresh(that.display.bind(that));
189 * include a JSON-encoded list of host descriptions, which we display if we're
260 remoting.HostList.prototype.display = function() {
/external/chromium_org/third_party/angle/src/libEGL/
H A DlibEGL.cpp22 bool validateDisplay(egl::Display *display) argument
24 if (display == EGL_NO_DISPLAY)
29 if (!display->isInitialized())
37 bool validateConfig(egl::Display *display, EGLConfig config) argument
39 if (!validateDisplay(display))
44 if (!display->isValidConfig(config))
52 bool validateContext(egl::Display *display, gl::Context *context) argument
54 if (!validateDisplay(display))
59 if (!display->isValidContext(context))
67 bool validateSurface(egl::Display *display, eg argument
183 egl::Display *display = static_cast<egl::Display*>(dpy); local
205 egl::Display *display = static_cast<egl::Display*>(dpy); local
216 egl::Display *display = static_cast<egl::Display*>(dpy); local
243 egl::Display *display = static_cast<egl::Display*>(dpy); local
271 egl::Display *display = static_cast<egl::Display*>(dpy); local
300 egl::Display *display = static_cast<egl::Display*>(dpy); local
320 egl::Display *display = static_cast<egl::Display*>(dpy); local
342 egl::Display *display = static_cast<egl::Display*>(dpy); local
357 egl::Display *display = static_cast<egl::Display*>(dpy); local
373 egl::Display *display = static_cast<egl::Display*>(dpy); local
396 egl::Display *display = static_cast<egl::Display*>(dpy); local
477 egl::Display *display = static_cast<egl::Display*>(dpy); local
558 egl::Display *display = static_cast<egl::Display*>(dpy); local
578 egl::Display *display = static_cast<egl::Display*>(dpy); local
595 egl::Display *display = static_cast<egl::Display*>(dpy); local
635 egl::Display *display = static_cast<egl::Display*>(dpy); local
672 egl::Display *display = static_cast<egl::Display*>(dpy); local
736 egl::Display *display = static_cast<egl::Display*>(dpy); local
771 egl::Display *display = static_cast<egl::Display*>(dpy); local
794 egl::Display *display = static_cast<egl::Display*>(dpy); local
886 egl::Display *display = static_cast<egl::Display*>(dpy); local
921 egl::Display *display = static_cast<egl::Display*>(dpy); local
951 egl::Display *display = static_cast<egl::Display*>(dpy); local
978 egl::Display *display = static_cast<egl::Display*>(dpy); local
[all...]
/external/chromium_org/third_party/skia/src/views/win/
H A DSkOSWindow_win.cpp410 EGLDisplay display = eglGetDisplay(GetDC(hWnd)); local
411 if (display == EGL_NO_DISPLAY ) {
417 if (!eglInitialize(display, &majorVersion, &minorVersion)) {
422 if (!eglGetConfigs(display, NULL, 0, &numConfigs)) {
441 if (eglChooseConfig(display, configAttribList, eglConfig, 1, &numConfigs)) {
447 if (!eglChooseConfig(display, configAttribList, eglConfig, 1, &numConfigs)) {
453 EGLSurface surface = eglCreateWindowSurface(display, *eglConfig,
461 EGLContext context = eglCreateContext(display, *eglConfig,
469 if (!eglMakeCurrent(display, surface, surface, context)) {
473 *eglDisplay = display;
[all...]
/external/chromium_org/ui/aura/
H A Dwindow_tree_host_x11.cc70 void SelectXInput2EventsForRootWindow(XDisplay* display, ::Window root_window) { argument
81 XISelectEvents(display, root_window, &evmask, 1);
95 XISelectEvents(display, root_window, &evmask, 1);
335 while (XPending(xev->xany.display)) {
337 XPeekEvent(xev->xany.display, &next_event);
342 XNextEvent(xev->xany.display, &last_event);
385 const gfx::Display display = gfx::Screen::GetScreenFor( local
387 cursor_client->SetDisplay(display);
580 xevent.xany.display = xdisplay_;
704 XFreeEventData(xev->xgeneric.display,
[all...]
/external/chromium_org/ui/base/resource/
H A Dresource_bundle.cc603 const gfx::Display display = local
605 const float display_density = display.device_scale_factor();
610 gfx::Display display = gfx::Screen::GetNativeScreen()->GetPrimaryDisplay(); local
611 if (display.device_scale_factor() > 2.0) {
612 DCHECK_EQ(3.0, display.device_scale_factor());
614 } else if (display.device_scale_factor() > 1.0) {
615 DCHECK_EQ(2.0, display.device_scale_factor());
/external/chromium_org/ui/display/chromeos/
H A Ddisplay_configurator.cc5 #include "ui/display/chromeos/display_configurator.h"
14 #include "ui/display/display_switches.h"
15 #include "ui/display/types/display_mode.h"
16 #include "ui/display/types/display_snapshot.h"
17 #include "ui/display/types/native_display_delegate.h"
29 // The delay spent before reading the display configuration after coming out of
30 // suspend. While coming out of suspend the display state may be updating. This
31 // is used to wait until the hardware had a chance to update the display state
82 display_states[i].display->type() == DISPLAY_CONNECTION_TYPE_INTERNAL;
105 : display(NUL
120 FindDisplayModeMatchingSize( const DisplaySnapshot& display, const gfx::Size& size) argument
[all...]
/external/deqp/modules/egl/
H A DteglNativeCoordMappingTests.cpp66 EGLContext createGLES2Context (EGLDisplay display, EGLConfig config) argument
77 context = eglCreateContext(display, config, EGL_NO_CONTEXT, attribList);
327 void executeForConfig (tcu::egl::Display& display, EGLConfig config);
345 void logConfigInfo (TestLog& log, EGLDisplay display, EGLConfig config, NativeCoordMappingCase::NativeType nativeType, int waitFrames) argument
347 log << TestLog::Message << "EGL_RED_SIZE: " << eglu::getConfigAttribInt(display, config, EGL_RED_SIZE) << TestLog::EndMessage;
348 log << TestLog::Message << "EGL_GREEN_SIZE: " << eglu::getConfigAttribInt(display, config, EGL_GREEN_SIZE) << TestLog::EndMessage;
349 log << TestLog::Message << "EGL_BLUE_SIZE: " << eglu::getConfigAttribInt(display, config, EGL_BLUE_SIZE) << TestLog::EndMessage;
350 log << TestLog::Message << "EGL_ALPHA_SIZE: " << eglu::getConfigAttribInt(display, config, EGL_ALPHA_SIZE) << TestLog::EndMessage;
351 log << TestLog::Message << "EGL_DEPTH_SIZE: " << eglu::getConfigAttribInt(display, config, EGL_DEPTH_SIZE) << TestLog::EndMessage;
352 log << TestLog::Message << "EGL_STENCIL_SIZE: " << eglu::getConfigAttribInt(display, confi
359 testNativeWindow(TestLog& log, eglu::NativeDisplay& nativeDisplay, eglu::NativeWindow& nativeWindow, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor, int waitFrames) argument
407 testNativePixmap(TestLog& log, eglu::NativeDisplay& nativeDisplay, eglu::NativePixmap& nativePixmap, int width, int height, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor) argument
451 testNativePixmapCopy(TestLog& log, eglu::NativePixmap& nativePixmap, int width, int height, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor) argument
521 executeForConfig(tcu::egl::Display& display, EGLConfig config) argument
[all...]
H A DteglSyncTests.cpp137 void requiredEGLExtensions (EGLDisplay display, SyncTest::Extension requiredExtensions) argument
140 std::istringstream extensionStream(eglQueryString(display, EGL_EXTENSIONS));
143 TCU_CHECK_EGL_MSG("eglQueryString(display, EGL_EXTENSIONS)");
215 tcu::egl::Display& display = m_eglTestCtx.getDisplay(); local
218 display.chooseConfig(displayAttribList, configs);
219 m_eglDisplay = display.getEGLDisplay();
/external/e2fsprogs/ext2ed/
H A Dext2ed.h59 the virtual display as infinite. Decrease the following for more realistic memory consumption.
141 int display; member in struct:struct_file_info
/external/libpng/contrib/gregbook/
H A Drpng-x.c3 rpng - simple PNG display program rpng-x.c
28 - 2.01: fixed improper display of usage screen on PNG error(s)
56 software must display the following acknowledgment:
140 static Display *display; variable
173 double default_display_exponent; /* whole display system */
182 /* First set the default value for our display-system exponent, i.e.,
236 if (!strncmp(*argv, "-display", 2)) {
279 "Usage: %s [-display xdpy] [-gamma exp] [-bgcolor bg] file.png\n"
280 " xdpy\tname of the target X display (e.g., ``hostname:0'')\n"
281 " exp \ttransfer-function exponent (``gamma'') of the display\
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/dga/
H A DSDL_dgavideo.c70 const char *display = NULL; local
74 /* The driver is available is available if the display is local
78 if ( (SDL_strncmp(XDisplayName(display), ":", 1) == 0) ||
79 (SDL_strncmp(XDisplayName(display), "unix:", 5) == 0) ) {
80 dpy = XOpenDisplay(display);
332 const char *display; local
339 /* Open the X11 display */
340 display = NULL; /* Get it from DISPLAY environment variable */
342 DGA_Display = XOpenDisplay(display);
344 SDL_SetError("Couldn't open X11 display");
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11events.c58 SDLKey X11_TranslateKeycode(Display *display, KeyCode kc);
308 static int X11_KeyRepeat(Display *display, XEvent *event) argument
314 if ( XPending(display) ) {
315 XPeekEvent(display, &peekevent);
320 XNextEvent(display, &peekevent);
906 int X11_Pending(Display *display) argument
908 /* Flush the display connection and look to see if events are queued */
909 XFlush(display);
910 if ( XEventsQueued(display, QueuedAlready) ) {
920 x11_fd = ConnectionNumber(display);
1119 X11_TranslateKeycode(Display *display, KeyCode kc) argument
1201 get_modifier_masks(Display *display) argument
1310 X11_SetKeyboardState(Display *display, const char *key_vec) argument
[all...]
H A DSDL_x11wm.c536 Display* display = SDL_Display; local
537 int screen = XDefaultScreen(display);
540 int width = XDisplayWidth(display, screen);
541 int width_mm = XDisplayWidthMM(display, screen);
542 int height = XDisplayHeight(display, screen);
543 int height_mm = XDisplayHeightMM(display, screen);
565 Display* display = SDL_Display; local
566 int screen = XDefaultScreen(display);
570 rect->w = XDisplayWidth(display, screen);
571 rect->h = XDisplayHeight(display, scree
[all...]
/external/skia/src/views/win/
H A DSkOSWindow_win.cpp409 EGLDisplay display = eglGetDisplay(GetDC(hWnd)); local
410 if (display == EGL_NO_DISPLAY ) {
416 if (!eglInitialize(display, &majorVersion, &minorVersion)) {
421 if (!eglGetConfigs(display, NULL, 0, &numConfigs)) {
440 if (eglChooseConfig(display, configAttribList, eglConfig, 1, &numConfigs)) {
446 if (!eglChooseConfig(display, configAttribList, eglConfig, 1, &numConfigs)) {
452 EGLSurface surface = eglCreateWindowSurface(display, *eglConfig,
460 EGLContext context = eglCreateContext(display, *eglConfig,
468 if (!eglMakeCurrent(display, surface, surface, context)) {
472 *eglDisplay = display;
[all...]
/external/chromium_org/third_party/closure_compiler/externs/
H A Dchrome_extensions.js3485 * management should be disabled, should be either "system" or "display".
3871 chrome.system.display = {};
3875 chrome.system.display.onDisplayChanged;
3881 chrome.system.display.Bounds = function() {};
3885 chrome.system.display.Bounds.prototype.left;
3889 chrome.system.display.Bounds.prototype.top;
3893 chrome.system.display.Bounds.prototype.width;
3897 chrome.system.display.Bounds.prototype.height;
3908 chrome.system.display.Insets;
3914 chrome.system.display
[all...]
/external/chromium_org/ash/accelerators/
H A Daccelerator_controller.cc16 #include "ash/display/display_controller.h"
17 #include "ash/display/display_manager.h"
343 gfx::Display display = Shell::GetScreen()->GetDisplayNearestPoint(point); local
345 Shell::GetInstance()->display_manager()->GetDisplayInfo(display.id());
347 display.id(), GetNextRotation(display_info.rotation()));
/external/chromium_org/ash/display/
H A Ddisplay_controller.cc5 #include "ash/display/display_controller.h"
12 #include "ash/display/cursor_window_controller.h"
13 #include "ash/display/display_layout_store.h"
14 #include "ash/display/display_manager.h"
15 #include "ash/display/mirror_window_controller.h"
16 #include "ash/display/root_window_transformers.h"
40 #include "ui/gfx/display.h"
45 #include "ash/display/display_configurator_animation.h"
64 // Primary display stored in global object as it can be
65 // accessed after Shell is deleted. A separate display instanc
85 SetDisplayPropertiesOnHost(AshWindowTreeHost* ash_host, const gfx::Display& display) argument
302 const gfx::Display& display = display_manager->GetDisplayAt(i); local
441 const gfx::Display& display = GetDisplayManager()->GetDisplayForId(id); local
519 const gfx::Display& display = display_manager->GetDisplayAt(i); local
564 OnDisplayAdded(const gfx::Display& display) argument
587 OnDisplayRemoved(const gfx::Display& display) argument
632 OnDisplayMetricsChanged(const gfx::Display& display, uint32_t metrics) argument
646 gfx::Display display = Shell::GetScreen()->GetDisplayNearestWindow( local
683 gfx::Display display = screen->GetDisplayNearestPoint(point_in_screen); local
724 AddWindowTreeHostForDisplay( const gfx::Display& display, const AshWindowTreeHostInitParams& init_params) argument
[all...]
/external/chromium_org/ash/shelf/
H A Dshelf_layout_manager_unittest.cc10 #include "ash/display/display_manager.h"
37 #include "ui/gfx/display.h"
706 gfx::Display display = screen->GetDisplayNearestWindow( local
708 ASSERT_NE(-1, display.id());
710 EXPECT_EQ(shelf_height, display.GetWorkAreaInsets().bottom());
718 display = screen->GetDisplayNearestWindow(
721 EXPECT_EQ(0, display.GetWorkAreaInsets().bottom());
735 display = screen->GetDisplayNearestWindow(
737 EXPECT_EQ(shelf_height, display.GetWorkAreaInsets().bottom());
769 gfx::Display display local
1445 gfx::Display display = local
[all...]

Completed in 948 milliseconds

<<11121314151617