Searched refs:overlay (Results 1 - 25 of 199) sorted by relevance

12345678

/external/chromium-trace/trace-viewer/src/ui/
H A Doverlay_test.js7 base.require('ui.overlay');
9 base.unittest.testSuite('ui.overlay', function() {
11 var overlay = new ui.Overlay();
12 overlay.innerHTML =
14 overlay.visible = true;
15 assertNotEquals(overlay.parentNode, null);
17 overlay.visible = false;
18 assertEquals(overlay.parentNode, null);
22 var overlay = new ui.Overlay();
23 overlay
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Dspelling_confirm_overlay.css6 #spelling-confirm-overlay {
H A Ddo_not_track_confirm_overlay.css5 #do-not-track-confirm-overlay {
H A Dfactory_reset_overlay.css5 #factory-reset-overlay {
H A Dlanguage_dictionary_overlay.css5 #language-dictionary-overlay-no-matches {
12 #language-dictionary-overlay-page h1 {
17 html[dir=rtl] #language-dictionary-overlay-page h1 {
22 #language-dictionary-overlay-search-field {
28 html[dir=rtl] #language-dictionary-overlay-search-field {
33 #language-dictionary-overlay-word-list {
37 #language-dictionary-overlay-word-list.no-search-matches {
41 #language-dictionary-overlay-word-list > * {
45 .language-dictionary-overlay-word-list-item {
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_phyuv.c73 SDL_Overlay* overlay; local
81 /* Create the overlay structure */
82 overlay = SDL_calloc(1, sizeof(SDL_Overlay));
84 if (overlay == NULL)
91 overlay->format = format;
92 overlay->w = width;
93 overlay->h = height;
94 overlay->hwdata = NULL;
97 overlay->hwfuncs = &ph_yuvfuncs;
105 SDL_FreeYUVOverlay(overlay);
281 ph_LockYUVOverlay(_THIS, SDL_Overlay* overlay) argument
327 ph_UnlockYUVOverlay(_THIS, SDL_Overlay* overlay) argument
337 ph_DisplayYUVOverlay(_THIS, SDL_Overlay* overlay, SDL_Rect* src, SDL_Rect* dst) argument
459 ph_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuvfuncs.h33 int (*Lock)(_THIS, SDL_Overlay *overlay);
34 void (*Unlock)(_THIS, SDL_Overlay *overlay);
35 int (*Display)(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
36 void (*FreeHW)(_THIS, SDL_Overlay *overlay);
H A DSDL_yuv.c38 SDL_Overlay *overlay; local
53 overlay = NULL;
57 overlay = video->CreateYUVOverlay(this, w, h, format, display);
59 /* If hardware YUV overlay failed ... */
60 if ( overlay == NULL ) {
61 overlay = SDL_CreateYUV_SW(this, w, h, format, display);
63 return overlay;
66 int SDL_LockYUVOverlay(SDL_Overlay *overlay) argument
68 if ( overlay == NULL ) {
69 SDL_SetError("Passed NULL overlay");
75 SDL_UnlockYUVOverlay(SDL_Overlay *overlay) argument
83 SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect) argument
141 SDL_FreeYUVOverlay(SDL_Overlay *overlay) argument
[all...]
H A DSDL_yuv_sw_c.h27 /* This is the software implementation of the YUV video overlay support */
31 extern int SDL_LockYUV_SW(_THIS, SDL_Overlay *overlay);
33 extern void SDL_UnlockYUV_SW(_THIS, SDL_Overlay *overlay);
35 extern int SDL_DisplayYUV_SW(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
37 extern void SDL_FreeYUV_SW(_THIS, SDL_Overlay *overlay);
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/
H A DSDL_ps3yuv_c.h38 extern int PS3_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
39 extern int PS3_LockYUVOverlay(_THIS, SDL_Overlay *overlay);
40 extern void PS3_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay);
41 extern void PS3_FreeYUVOverlay(_THIS, SDL_Overlay *overlay);
H A DSDL_ps3yuv.c103 SDL_Overlay* overlay; local
106 /* Create the overlay structure */
107 overlay = (SDL_Overlay *) SDL_calloc(1, sizeof(SDL_Overlay));
108 if (overlay == NULL) {
112 SDL_memset(overlay, 0, (sizeof *overlay));
115 overlay->format = format;
116 overlay->w = width;
117 overlay->h = height;
118 overlay
198 PS3_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
208 PS3_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
218 PS3_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
314 PS3_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysyuv.cc130 SDL_Overlay* overlay; local
156 /* Create the overlay structure */
157 overlay = (SDL_Overlay*)SDL_calloc(1, sizeof(SDL_Overlay));
159 if (overlay == NULL)
166 overlay->format = format;
167 overlay->w = width;
168 overlay->h = height;
169 overlay->hwdata = NULL;
172 overlay->hwfuncs = &be_yuvfuncs;
180 SDL_FreeYUVOverlay(overlay);
245 BE_LockYUVOverlay(_THIS, SDL_Overlay* overlay) argument
256 BE_UnlockYUVOverlay(_THIS, SDL_Overlay* overlay) argument
266 BE_DisplayYUVOverlay(_THIS, SDL_Overlay* overlay, SDL_Rect* src, SDL_Rect *dst) argument
295 BE_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
H A DSDL_DirectFB_yuv.h31 extern int DirectFB_LockYUVOverlay(_THIS, SDL_Overlay *overlay);
33 extern void DirectFB_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay);
35 extern int DirectFB_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
37 extern void DirectFB_FreeYUVOverlay(_THIS, SDL_Overlay *overlay);
H A DSDL_DirectFB_yuv.c153 SDL_Overlay *overlay; local
156 /* Create the overlay structure */
157 overlay = SDL_calloc (1, sizeof(SDL_Overlay));
158 if (!overlay)
165 overlay->format = format;
166 overlay->w = width;
167 overlay->h = height;
170 overlay->hwfuncs = &directfb_yuvfuncs;
174 overlay->hwdata = hwdata;
178 SDL_FreeYUVOverlay (overlay);
208 DirectFB_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
244 DirectFB_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
253 DirectFB_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
274 DirectFB_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsyuv_c.h31 extern int GS_LockYUVOverlay(_THIS, SDL_Overlay *overlay);
33 extern void GS_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay);
35 extern int GS_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
37 extern void GS_FreeYUVOverlay(_THIS, SDL_Overlay *overlay);
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
H A DSDL_dx5yuv_c.h32 extern int DX5_LockYUVOverlay(_THIS, SDL_Overlay *overlay);
34 extern void DX5_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay);
36 extern int DX5_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
38 extern void DX5_FreeYUVOverlay(_THIS, SDL_Overlay *overlay);
H A DSDL_dx5yuv.c124 SDL_Overlay *overlay; local
148 /* Create the overlay structure */
149 overlay = (SDL_Overlay *)SDL_malloc(sizeof *overlay);
150 if ( overlay == NULL ) {
154 SDL_memset(overlay, 0, (sizeof *overlay));
157 overlay->format = format;
158 overlay->w = width;
159 overlay
196 DX5_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
242 DX5_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
250 DX5_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
283 DX5_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11yuv_c.h33 extern int X11_LockYUVOverlay(_THIS, SDL_Overlay *overlay);
35 extern void X11_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay);
37 extern int X11_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
39 extern void X11_FreeYUVOverlay(_THIS, SDL_Overlay *overlay);
H A DSDL_x11yuv.c47 /* Workaround intel i810 video overlay waiting with failing until the
107 static void X11_ClearYUVOverlay(SDL_Overlay *overlay) argument
111 switch (overlay->format)
115 for (y = 0; y < overlay->h; y++)
116 memset(overlay->pixels[0] + y * overlay->pitches[0],
117 0, overlay->w);
119 for (y = 0; y < (overlay->h / 2); y++)
121 memset(overlay->pixels[1] + y * overlay
162 SDL_Overlay *overlay; local
472 X11_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
477 X11_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
482 X11_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
507 X11_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/js/cr/ui/
H A Doverlay.js8 cr.define('cr.ui.overlay', function() {
11 * Gets the top, visible overlay. It makes the assumption that if multiple
14 * @return {HTMLElement} The overlay.
17 var overlays = document.querySelectorAll('.overlay:not([hidden])');
25 // Close the overlay on escape.
28 var overlay = getTopOverlay();
29 if (!overlay)
32 cr.dispatchSimpleEvent(overlay, 'cancelOverlay');
46 var pages = document.querySelectorAll('.overlay .page');
54 * Adds behavioral hooks for the given overlay
[all...]
/external/chromium_org/chrome/browser/resources/extensions/
H A Dextension_error_overlay.css5 #extension-error-overlay .highlighted-source {
9 #extension-error-overlay .content-area {
H A Dextension_focus_manager.js19 var overlay = extensions.ExtensionSettings.getCurrentOverlay();
20 return overlay || $('extension-settings');
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Doverlay.js8 cr.define('cr.ui.overlay', function() {
10 * Gets the top, visible overlay. It makes the assumption that if multiple
13 * @return {HTMLElement} The overlay.
16 var overlays = document.querySelectorAll('.overlay:not([hidden])');
21 * Returns a visible default button of the overlay, if it has one. If the
22 * overlay has more than one, the first one will be returned.
24 * @param {HTMLElement} overlay The .overlay.
27 function getDefaultButton(overlay) {
30 overlay
[all...]
/external/chromium_org/chrome/browser/resources/extensions/chromeos/
H A Dkiosk_app_disable_bailout_confirm.js7 * A confirmation overlay for disabling kiosk app bailout shortcut.
20 var overlay = $('kiosk-disable-bailout-confirm-overlay');
21 cr.ui.overlay.setupOverlay(overlay);
22 cr.ui.overlay.globalInitialization();
23 overlay.addEventListener('cancelOverlay', this.handleCancel);
35 /** Handles overlay being canceled. */
54 // Otherwise, show the confirmation overlay.
56 'kiosk-disable-bailout-confirm-overlay'));
[all...]
/external/chromium_org/chrome/browser/resources/history/
H A Dalert_overlay.css5 .overlay .page .button-strip > button {
9 .overlay {

Completed in 441 milliseconds

12345678