Searched refs:display (Results 1 - 25 of 1334) sorted by relevance

1234567891011>>

/external/chromium_org/ui/gfx/
H A Ddisplay_unittest.cc5 #include "ui/gfx/display.h"
13 gfx::Display display(0, gfx::Rect(0, 0, 100, 100));
14 EXPECT_EQ("0,0 100x100", display.bounds().ToString());
15 EXPECT_EQ("0,0 100x100", display.work_area().ToString());
17 display.set_work_area(gfx::Rect(3, 4, 90, 80));
18 EXPECT_EQ("0,0 100x100", display.bounds().ToString());
19 EXPECT_EQ("3,4 90x80", display.work_area().ToString());
21 display.SetScaleAndBounds(1.0f, gfx::Rect(10, 20, 50, 50));
22 EXPECT_EQ("10,20 50x50", display.bounds().ToString());
23 EXPECT_EQ("13,24 40x30", display
[all...]
/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-trace/trace-viewer/src/cc/
H A Dpicture_view.css7 display: -webkit-flex;
/external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/allowThirdPartyCookies/
H A Dpopup.css12 display: none;
/external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/enableReferrer/
H A Dpopup.css12 display: none;
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/
H A DBrailleDisplayProperties.aidl17 package com.googlecode.eyesfree.braille.display;
H A DBrailleInputEvent.aidl17 package com.googlecode.eyesfree.braille.display;
H A DIBrailleServiceCallback.aidl17 package com.googlecode.eyesfree.braille.display;
19 import com.googlecode.eyesfree.braille.display.BrailleDisplayProperties;
20 import com.googlecode.eyesfree.braille.display.BrailleInputEvent;
23 * Callback interface that a braille display client can expose to
24 * get information about various braille display events.
/external/chromium_org/third_party/polymer/components/core-menu-button/
H A Dcore-menu-button.css9 display: inline-block;
/external/chromium_org/third_party/polymer/components-chromium/core-menu-button/
H A Dcore-menu-button.css9 display: inline-block;
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dbluetooth_pair_device.css6 display: none;
15 display: none;
/external/chromium_org/third_party/polymer/components/core-collapse/
H A Dcore-collapse.css11 display: block;
15 display: none;
/external/chromium_org/third_party/polymer/components-chromium/core-collapse/
H A Dcore-collapse.css11 display: block;
15 display: none;
/external/chromium_org/ui/ozone/common/chromeos/
H A Ddisplay_util.cc7 #include "ui/display/types/display_mode.h"
8 #include "ui/display/types/display_snapshot.h"
22 const DisplaySnapshot& display) {
24 params.display_id = display.display_id();
25 params.has_proper_display_id = display.has_proper_display_id();
26 params.origin = display.origin();
27 params.physical_size = display.physical_size();
28 params.type = display.type();
29 params.is_aspect_preserving_scaling = display.is_aspect_preserving_scaling();
30 params.has_overscan = display
21 GetDisplaySnapshotParams( const DisplaySnapshot& display) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
H A Dtest_blocks.c38 Display *display; local
48 display = XOpenDisplay(NULL);
52 display,
64 XCloseDisplay(display);
70 Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0);
71 XvGetPortAttribute(display, port_num, xv_colorkey, &colorkey);
74 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, &context) == Success);
75 assert(XvMCCreateSurface(display, &context, &surface) == Success);
78 assert(XvMCCreateBlocks(display, NULL, 1, &blocks) == XvMCBadContext);
80 assert(XvMCCreateBlocks(display,
[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...]
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...]
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
H A Dtest_blocks.c38 Display *display; local
48 display = XOpenDisplay(NULL);
52 display,
64 XCloseDisplay(display);
70 Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0);
71 XvGetPortAttribute(display, port_num, xv_colorkey, &colorkey);
74 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, &context) == Success);
75 assert(XvMCCreateSurface(display, &context, &surface) == Success);
78 assert(XvMCCreateBlocks(display, NULL, 1, &blocks) == XvMCBadContext);
80 assert(XvMCCreateBlocks(display,
[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...]
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...]
/external/chromium_org/gpu/config/
H A Dgpu_info_collector_x11.cc18 Display* display = gfx::GetXDisplay(); local
19 if (!display) {
24 if (!XNVCTRLQueryExtension(display, &event_base, &error_base)) {
28 int screen_count = ScreenCount(display);
31 if (XNVCTRLIsNvScreen(display, screen) &&
32 XNVCTRLQueryStringAttribute(display, screen, 0,
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Dgeneric_object_view.css7 display: block;
/external/chromium_org/ui/ozone/platform/caca/
H A Dscoped_caca_types.cc15 void CacaDisplayDeleter::operator()(caca_display_t* display) const {
16 caca_free_display(display);
/external/deqp/framework/egl/
H A DegluConfigInfo.cpp69 void queryConfigInfo (EGLDisplay display, EGLConfig config, ConfigInfo* dst) argument
71 eglGetConfigAttrib(display, config, EGL_BUFFER_SIZE, &dst->bufferSize);
72 eglGetConfigAttrib(display, config, EGL_RED_SIZE, &dst->redSize);
73 eglGetConfigAttrib(display, config, EGL_GREEN_SIZE, &dst->greenSize);
74 eglGetConfigAttrib(display, config, EGL_BLUE_SIZE, &dst->blueSize);
75 eglGetConfigAttrib(display, config, EGL_LUMINANCE_SIZE, &dst->luminanceSize);
76 eglGetConfigAttrib(display, config, EGL_ALPHA_SIZE, &dst->alphaSize);
77 eglGetConfigAttrib(display, config, EGL_ALPHA_MASK_SIZE, &dst->alphaMaskSize);
78 eglGetConfigAttrib(display, config, EGL_BIND_TO_TEXTURE_RGB, (EGLint*)&dst->bindToTextureRGB);
79 eglGetConfigAttrib(display, confi
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11events_c.h29 extern void X11_SetKeyboardState(Display *display, const char *key_vec);

Completed in 574 milliseconds

1234567891011>>