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

123456789

/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/chromeos/
H A Dconsumer_management_overlay.css5 #consumer-management-overlay {
H A Dthird_party_ime_confirm_overlay.css6 #third-party-ime-confirm-overlay {
/external/chromium_org/chrome/browser/resources/options/
H A Dhotword_confirm_overlay.css6 #hotword-confirm-overlay {
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 Deasy_unlock_turn_off_overlay.css5 #easy-unlock-turn-off-overlay {
/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/chromium_org/ash/sticky_keys/
H A Dsticky_keys_overlay_unittest.cc21 StickyKeysOverlay overlay; local
22 EXPECT_FALSE(overlay.is_visible());
23 overlay.Show(true);
24 EXPECT_TRUE(overlay.is_visible());
28 StickyKeysOverlay overlay; local
29 overlay.SetModifierKeyState(ui::EF_SHIFT_DOWN, STICKY_KEY_STATE_DISABLED);
30 overlay.SetModifierKeyState(ui::EF_ALT_DOWN, STICKY_KEY_STATE_LOCKED);
31 overlay.SetModifierKeyState(ui::EF_CONTROL_DOWN, STICKY_KEY_STATE_ENABLED);
34 overlay.GetModifierKeyState(ui::EF_SHIFT_DOWN));
36 overlay
[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);
/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 {
9 #extension-error-overlay .content-area {
14 .extension-error-overlay-runtime-content {
18 #extension-error-overlay .extension-code-highlighted-source {
22 #extension-error-overlay-code {
27 #extension-error-overlay .extension-code-source {
31 .extension-error-overlay-context {
36 .extension-error-overlay-stack-trace-list {
41 .extension-error-overlay-stack-trace summary {
47 .extension-error-overlay
[all...]
/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...]

Completed in 1071 milliseconds

123456789