/external/chromium-trace/trace-viewer/src/ui/ |
overlay_test.js | 7 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() [all...] |
overlay.js | 11 * You can turn any div into an overlay. Note that while an 12 * overlay element is shown, its parent is changed. Hiding the overlay 16 base.requireStylesheet('ui.overlay'); 35 this.classList.add('overlay-root'); 72 this.exitButton_.title = 'Close Overlay (esc)'; 77 * Adds an overlay, attaching it to the contentHost so that it is visible. 79 showOverlay: function(overlay) { 80 // Reparent this to the overlay content host. 81 overlay.oldParent_ = overlay.parentNode [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/photon/ |
SDL_phyuv.c | 73 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); [all...] |
/external/chromium/chrome/browser/resources/gpu_internals/ |
overlay_test.html | 10 <link rel="stylesheet" href="overlay.css"> 14 <script src="overlay.js"></script> 27 var overlay; 30 overlay = new gpu.Overlay(); 31 overlay.innerHTML = 33 overlay.visible = true; 34 assertNotEquals(overlay.parentNode, null); 36 overlay.visible = false; 37 assertEquals(overlay.parentNode, null) [all...] |
overlay.js | 10 * You can turn any div into an overlay. Note that while an 11 * overlay element is shown, its parent is changed. Hiding the overlay 28 this.classList.add('overlay-root'); 45 * Adds an overlay, attaching it to the contentHost so that it is visible. 47 showOverlay: function(overlay) { 48 // Reparent this to the overlay content host. 49 overlay.oldParent_ = overlay.parentNode; 50 this.contentHost.appendChild(overlay); [all...] |
/external/chromium_org/tools/measure_page_load_time/ff_ext/content/ |
firefoxOverlay.xul | 2 <?xml-stylesheet href="chrome://measurepageloadtimeextension/skin/overlay.css" type="text/css"?>
3 <!DOCTYPE overlay SYSTEM "chrome://measurepageloadtimeextension/locale/measurepageloadtimeextension.dtd">
4 <overlay id="measurepageloadtimeextension-overlay"
7 </overlay>
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/js/cr/ui/ |
overlay.js | 8 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/tools/measure_page_load_time/ff_ext/ |
chrome.manifest | 2 overlay chrome://browser/content/browser.xul chrome://measurepageloadtimeextension/content/firefoxOverlay.xul
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_UnlockYUVOverlay.3 | 3 SDL_UnlockYUVOverlay \- Unlock an overlay 8 \fBvoid \fBSDL_UnlockYUVOverlay\fP\fR(\fBSDL_Overlay *overlay\fR); 11 The opposite to \fI\fBSDL_LockYUVOverlay\fP\fR\&. Unlocks a previously locked overlay\&. An overlay must be unlocked before it can be displayed\&.
|
SDL_FreeYUVOverlay.3 | 3 SDL_FreeYUVOverlay \- Free a YUV video overlay 8 \fBvoid \fBSDL_FreeYUVOverlay\fP\fR(\fBSDL_Overlay *overlay\fR);
|
SDL_DisplayYUVOverlay.3 | 3 SDL_DisplayYUVOverlay \- Blit the overlay to the display 8 \fBint \fBSDL_DisplayYUVOverlay\fP\fR(\fBSDL_Overlay *overlay, SDL_Rect *dstrect\fR); 11 Blit the \fBoverlay\fR to the surface specified when it was \fIcreated\fR\&. The \fI\fBSDL_Rect\fR\fR structure, \fBdstrect\fR, specifies the position and size of the destination\&. If the \fBdstrect\fR is a larger or smaller than the overlay then the overlay will be scaled, this is optimized for 2x scaling\&.
|
SDL_CreateYUVOverlay.3 | 3 SDL_CreateYUVOverlay \- Create a YUV video overlay 11 \fBSDL_CreateYUVOverlay\fP creates a YUV overlay of the specified \fBwidth\fR, \fBheight\fR and \fBformat\fR (see \fI\fBSDL_Overlay\fR\fR for a list of available formats), for the provided \fBdisplay\fR\&. A \fI\fBSDL_Overlay\fR\fR structure is returned\&. 13 The term \&'overlay\&' is a misnomer since, unless the overlay is created in hardware, the contents for the display surface underneath the area where the overlay is shown will be overwritten when the overlay is displayed\&.
|
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
overlay.js | 8 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.querySelectorAll('.page .button-strip > .default-button') [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/ |
SDL_DirectFB_yuv.c | 153 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); [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
SDL_sysyuv.cc | 130 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); [all...] |
/external/chromium/chrome/browser/resources/options/ |
language_add_language_overlay.html | 1 <div class="page hidden" id="add-language-overlay-page"> 3 <ul id="add-language-overlay-language-list"> 5 <button id="add-language-overlay-cancel-button" 13 <select id="add-language-overlay-language-list"></select> 18 <button id="add-language-overlay-cancel-button" i18n-content="cancel"> 20 <button id="add-language-overlay-ok-button" i18n-content="ok"></button>
|
autofill_overlay.css | 1 #autofill-edit-address-overlay { 5 #autofill-edit-credit-card-overlay { 25 #autofill-edit-address-overlay list#full-name-list { 29 #autofill-edit-address-overlay list#full-name-list div.static-text { 33 #autofill-edit-address-overlay list#full-name-list input { 46 #autofill-edit-address-overlay list { 52 #autofill-edit-address-overlay list div.static-text { 61 #autofill-edit-address-overlay list input {
|
/external/chromium_org/chrome/browser/resources/options/ |
language_dictionary_overlay.css | 5 #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 {
|
language_add_language_overlay.html | 1 <div id="add-language-overlay-page" class="page" role="dialog" hidden> 5 <label for="add-language-overlay-language-list" 7 <select id="add-language-overlay-language-list"></select> 10 <button id="add-language-overlay-cancel-button" i18n-content="cancel"> 12 <button id="add-language-overlay-ok-button" class="default-button"
|
language_dictionary_overlay.html | 1 <div id="language-dictionary-overlay-page" class="page" hidden> 4 <input id="language-dictionary-overlay-search-field" type="search" 10 <p id="language-dictionary-overlay-no-matches" 12 <list id="language-dictionary-overlay-word-list"></list> 16 <button id="language-dictionary-overlay-done-button" class="default-button"
|
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/ |
SDL_dx5yuv.c | 124 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->h = height [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_yuv.c | 38 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) 68 if ( overlay == NULL ) { 69 SDL_SetError("Passed NULL overlay"); [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/ |
SDL_ps3yuv.c | 103 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->hwdata = NULL [all...] |
/frameworks/base/core/tests/overlaytests/OverlayTestOverlay/ |
AndroidManifest.xml | 2 package="com.android.overlaytest.overlay" 5 <overlay-package android:name="android"/>
|
/external/chromium_org/chrome/browser/resources/extensions/ |
extension_error_overlay.js | 25 var overlay = $('overlay'); 26 cr.ui.overlay.setupOverlay(overlay); 27 cr.ui.overlay.globalInitialization(); 28 overlay.addEventListener('cancelOverlay', this.handleDismiss_.bind(this)); 30 $('extension-error-overlay-dismiss').addEventListener( 40 $('extension-error-overlay-content').innerHTML = ''; 47 * source. Populate the content area of the overlay and display the overlay [all...] |