HomeSort by relevance Sort by last modified time
    Searched full:overlay (Results 1 - 25 of 1756) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/tests/overlaytests/OverlayAppFirst/res/raw/
lorem_ipsum.txt 1 Lorem ipsum: single overlay.
  /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_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/third_party/polymer/components/core-overlay/
README.md 1 core-overlay
4 See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-overlay) for more information.
.bower.json 2 "name": "core-overlay",
8 "homepage": "https://github.com/Polymer/core-overlay",
16 "_source": "git://github.com/Polymer/core-overlay.git",
18 "_originalSource": "Polymer/core-overlay"
  /external/chromium_org/third_party/polymer/components-chromium/core-overlay/
README.md 1 core-overlay
4 See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-overlay) for more information.
  /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/chromium_org/ash/sticky_keys/
sticky_keys_overlay_unittest.cc 21 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.GetModifierKeyState(ui::EF_ALT_DOWN))
    [all...]
  /external/chromium_org/chrome/browser/resources/extensions/
extension_options_overlay.html 6 <div id="extension-options-overlay" class="page">
8 <div id="extension-options-overlay-header">
9 <img id="extension-options-overlay-icon"></img>
10 <h1 id="extension-options-overlay-title"></h1>
12 <div id="extension-options-overlay-guest"></div>
extension_error_overlay.html 7 <div id="template-collection-extension-error-overlay" hidden>
8 <div class="extension-error-overlay-runtime-content">
9 <div class="extension-error-overlay-context">
11 <span class="extension-error-overlay-context-url"></span>
13 <details class="extension-error-overlay-stack-trace">
15 <ul class="extension-error-overlay-stack-trace-list"></ul>
20 <div id="extension-error-overlay" class="page">
22 <h1 class="extension-error-overlay-title"></h1>
24 <div id="extension-error-overlay-code" class="extension-code"></div>
29 <button id="extension-error-overlay-dismiss
    [all...]
extension_error_overlay.css 5 #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-stack-trace summary::-webkit-details-marker
    [all...]
extension_options_overlay.js 19 * The function that shows the given element in the overlay.
21 * show in the overlay.
30 * which is either the overlay Div if the overlay should be displayed,
31 * or null if the overlay should be hidden.
34 var overlay = $('overlay');
36 cr.ui.overlay.setupOverlay(overlay);
37 cr.ui.overlay.globalInitialization()
    [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_org/chrome/browser/resources/options/
language_add_language_overlay.html 1 <div id="add-language-overlay-page" class="page" role="dialog" hidden>
5 <label id="add-language-overlay-language-list-label"
7 <select id="add-language-overlay-language-list"
8 aria-labelledby="add-language-overlay-language-list-label"></select>
11 <button id="add-language-overlay-cancel-button" i18n-content="cancel">
13 <button id="add-language-overlay-ok-button" class="default-button"
autofill_edit_overlay.css 5 #autofill-edit-address-overlay {
9 #autofill-edit-credit-card-overlay {
13 #autofill-edit-address-overlay .long div[role='listitem'] > div > div,
14 #autofill-edit-address-overlay .long input,
15 #autofill-edit-address-overlay textarea.long,
16 #autofill-edit-address-overlay input.long {
20 #autofill-edit-address-overlay .short div[role='listitem'] > div > div,
21 #autofill-edit-address-overlay .short input,
22 #autofill-edit-address-overlay textarea.short,
23 #autofill-edit-address-overlay input.short
    [all...]
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 {

Completed in 1231 milliseconds

1 2 3 4 5 6 7 8 91011>>