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

12345678

/external/qemu/distrib/sdl-1.2.12/src/video/x11/
H A DSDL_x11events_c.h29 extern void X11_SetKeyboardState(Display *display, const char *key_vec);
31 extern void X11_SaveScreenSaver(Display *display, int *saved_timeout, BOOL *dpms);
32 extern void X11_DisableScreenSaver(_THIS, Display *display);
33 extern void X11_RestoreScreenSaver(_THIS, Display *display, int saved_timeout, BOOL dpms);
H A DSDL_x11yuv_c.h31 extern SDL_Overlay *X11_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
/external/webkit/WebKit/chromium/src/x11/
H A DWebScreenInfoFactory.cpp40 WebScreenInfo WebScreenInfoFactory::screenInfo(Display* display, int screenNumber) argument
46 int displayWidth = XDisplayWidth(display, screenNumber);
47 int displayHeight = XDisplayHeight(display, screenNumber);
48 results.depth = XDisplayPlanes(display, screenNumber);
/external/clearsilver/cs/
H A Dtest10.cs4 this should always display [1]
7 <?cs alt:"this should display [2]" ?>
8 ERROR: this shouldn't display (static string)
12 ERROR: this should never display (#1)
17 ERROR: this should never display (Foo.Bar.Baz.0 exists)
21 This should display [3]
/external/webkit/WebCore/css/
H A DmediaControlsQt.css36 display: -webkit-box;
50 display: none;
74 audio::-webkit-media-controls-current-time-display, video::-webkit-media-controls-current-time-display {
75 display: none;
78 audio::-webkit-media-controls-time-remaining-display, video::-webkit-media-controls-time-remaining-display {
79 display: none;
91 display: none;
95 display
[all...]
H A Dhtml.css27 display: block
30 /* children of the <head> element all have display:none */
32 display: none
36 display: none
40 display: none
44 display: none
48 display: none
52 display: none
58 display: block;
63 display
[all...]
H A DmediaControls.css33 display: -webkit-box;
52 display: -webkit-box;
59 display: -webkit-box;
66 display: -webkit-box;
75 audio::-webkit-media-controls-current-time-display, video::-webkit-media-controls-current-time-display {
76 display: none;
79 audio::-webkit-media-controls-time-remaining-display, video::-webkit-media-controls-time-remaining-display {
80 display
[all...]
H A Dwml.css28 display: block
31 /* children of the <head> element all have display:none */
33 display: none
37 display: none
41 display: none
47 display: block;
52 display: block;
59 display: table;
71 display: table-row;
77 display
[all...]
H A DmediaControlsChromium.css90 audio::-webkit-media-controls-current-time-display, video::-webkit-media-controls-current-time-display {
91 -webkit-appearance: media-current-time-display;
93 display: inline-block;
115 audio::-webkit-media-controls-time-remaining-display, video::-webkit-media-controls-time-remaining-display {
116 -webkit-appearance: media-time-remaining-display;
118 display: none;
159 display: none;
164 display
[all...]
H A Dsvg.css55 display: block
H A DmediaControlsQuickTime.css67 audio::-webkit-media-controls-current-time-display, video::-webkit-media-controls-current-time-display {
69 display: -webkit-box;
89 audio::-webkit-media-controls-time-remaining-display, video::-webkit-media-controls-time-remaining-display {
91 display: -webkit-box;
112 display: -webkit-box;
121 display: none;
126 display: none;
139 display
[all...]
/external/qemu/android/
H A Dandroid.h37 const char* display; member in struct:__anon3277
47 const char* display; member in struct:__anon3278
/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
H A DSDL_sysyuv.h57 SDL_Surface *display; member in struct:private_yuvhwdata
65 extern SDL_Overlay* BE_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface* display);
/external/qemu/distrib/sdl-1.2.12/src/video/quartz/
H A DSDL_QuartzWindow.h27 - (void)display;
28 - (void)setFrame:(NSRect)frameRect display:(BOOL)flag;
/external/dropbear/
H A Dsvr-x11fwd.c131 char display[20]; /* space for "localhost:12345.123" */ local
140 val = snprintf(display, sizeof(display), "localhost:%d.%d",
142 if (val < 0 || val >= (int)sizeof(display)) {
147 addnewvar("DISPLAY", display);
150 val = snprintf(display, sizeof(display), "unix:%d.%d",
152 if (val < 0 || val >= (int)sizeof(display)) {
161 display, chansess->x11authprot, chansess->x11authcookie);
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_yuv_sw_c.h29 extern SDL_Overlay *SDL_CreateYUV_SW(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
H A DSDL_yuv.c33 SDL_Surface *display)
40 if ( (display->flags & SDL_OPENGL) == SDL_OPENGL ) {
47 if ( (display == SDL_PublicSurface) &&
50 display = SDL_VideoSurface;
55 if ( ((display == SDL_VideoSurface) && video->CreateYUVOverlay) &&
57 overlay = video->CreateYUVOverlay(this, w, h, format, display);
61 overlay = SDL_CreateYUV_SW(this, w, h, format, display);
32 SDL_CreateYUVOverlay(int w, int h, Uint32 format, SDL_Surface *display) argument
/external/qemu/distrib/sdl-1.2.12/src/video/directfb/
H A DSDL_DirectFB_yuv.h29 extern SDL_Overlay *DirectFB_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
/external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
H A DSDL_gsyuv_c.h29 extern SDL_Overlay *GS_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/
H A DSDL_dx5yuv_c.h30 extern SDL_Overlay *DX5_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
/external/webkit/WebCore/platform/brew/
H A DScreenBrew.cpp50 IDisplay* display = reinterpret_cast<AEEApplet*>(GETAPPINSTANCE())->m_pIDisplay; local
51 IBitmap* bitmap = IDisplay_GetDestination(display);
/external/dbus/tools/
H A Ddbus-launch-x11.c97 char *display; local
105 display = xstrdup (getenv ("DISPLAY"));
106 if (display == NULL)
112 /* remove the screen part of the display name */
113 p = strrchr (display, ':');
126 /* Note that we leave the hostname in the display most of the
127 * time. The idea is that we want to be per-(machine,display,user)
137 remove_prefix (display, "localhost.localdomain:");
138 remove_prefix (display, "localhost:");
139 remove_prefix (display, "
228 init_x_atoms(Display *display) argument
[all...]
/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/webkit/WebCore/rendering/
H A DRenderTableCol.cpp55 m_span = !(style() && style()->display() == TABLE_COLUMN_GROUP);
62 return !child->isText() && style && (style->display() == TABLE_COLUMN);
69 return style()->display() == TABLE_COLUMN_GROUP;
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
H A DXvlib.h100 Display *display; /* Display the event was read from */ member in struct:__anon3543
111 Display *display; /* Display the event was read from */ member in struct:__anon3544
169 Display* /* display */,
180 Display* /* display */,
189 Display* /* display */,
198 Display* /* display */,
215 Display* /* display */,
232 Display* /* display */,
249 Display* /* display */,
266 Display* /* display */,
[all...]

Completed in 194 milliseconds

12345678