Searched defs:overlay (Results 26 - 50 of 65) sorted by relevance

123

/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestoverlay2.c3 * Test of the overlay used for moved pictures, test more closed to real life. *
272 fprintf(stderr, " -scale <scale factor> (initial scale of the overlay)\n");
285 SDL_Overlay* overlay; local
423 SDL_WM_SetCaption("SDL test overlay: running moose", "testoverlay2");
478 overlay=SDL_CreateYUVOverlay(MOOSEPIC_W, MOOSEPIC_H, overlay_format, screen);
479 if (!overlay)
481 fprintf(stderr, "Couldn't create overlay: %s\n", SDL_GetError());
485 printf("Created %dx%dx%d %s %s overlay\n",overlay->w,overlay
[all...]
/external/chromium_org/third_party/readability/js/
H A Dreadability.js104 var overlay = document.createElement("DIV"); variable
122 overlay.id = "readOverlay";
130 overlay.className = readability.readStyle + " rdbTypekit";
132 overlay.className = readability.readStyle;
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuv_sw.c24 /* This is the software implementation of the YUV video overlay support */
928 SDL_Overlay *overlay; local
962 /* Create the overlay structure */
963 overlay = (SDL_Overlay *)SDL_malloc(sizeof *overlay);
964 if ( overlay == NULL ) {
968 SDL_memset(overlay, 0, (sizeof *overlay));
971 overlay->format = format;
972 overlay
1157 SDL_LockYUV_SW(_THIS, SDL_Overlay *overlay) argument
1162 SDL_UnlockYUV_SW(_THIS, SDL_Overlay *overlay) argument
1167 SDL_DisplayYUV_SW(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
1278 SDL_FreeYUV_SW(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/aac/libAACdec/src/
H A Dchannelinfo.h259 } overlay; member in struct:__anon40
270 * - pComData->overlay memory pointed to can be overwritten after each CChannelElement_Decode() call..
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorController.cpp90 InspectorOverlay* overlay = m_overlay.get(); local
94 OwnPtrWillBeRawPtr<InspectorPageAgent> pageAgentPtr(InspectorPageAgent::create(m_page, injectedScriptManager, inspectorClient, overlay));
98 OwnPtrWillBeRawPtr<InspectorDOMAgent> domAgentPtr(InspectorDOMAgent::create(m_pageAgent, injectedScriptManager, overlay));
116 overlay, InspectorTimelineAgent::PageInspector, inspectorClient));
178 InspectorOverlay* overlay = m_overlay.get(); local
196 OwnPtrWillBeRawPtr<InspectorDebuggerAgent> debuggerAgentPtr(PageDebuggerAgent::create(pageScriptDebugServer, m_pageAgent, injectedScriptManager, overlay));
202 m_agents.append(InspectorProfilerAgent::create(injectedScriptManager, overlay));
285 // relese overlay page resources
H A DInspectorOverlay.cpp124 InspectorOverlayChromeClient(ChromeClient& client, InspectorOverlay* overlay) argument
126 , m_overlay(overlay)
H A DInspectorDOMAgent.cpp237 InspectorDOMAgent::InspectorDOMAgent(InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay) argument
241 , m_overlay(overlay)
H A DInspectorPageAgent.cpp317 PassOwnPtrWillBeRawPtr<InspectorPageAgent> InspectorPageAgent::create(Page* page, InjectedScriptManager* injectedScriptManager, InspectorClient* client, InspectorOverlay* overlay) argument
319 return adoptPtrWillBeNoop(new InspectorPageAgent(page, injectedScriptManager, client, overlay));
403 InspectorPageAgent::InspectorPageAgent(Page* page, InjectedScriptManager* injectedScriptManager, InspectorClient* client, InspectorOverlay* overlay) argument
409 , m_overlay(overlay)
H A DInspectorTimelineAgent.cpp1206 InspectorOverlay* overlay, InspectorType type, InspectorClient* client)
1212 , m_overlay(overlay)
1205 InspectorTimelineAgent(InspectorPageAgent* pageAgent, InspectorLayerTreeAgent* layerTreeAgent, InspectorOverlay* overlay, InspectorType type, InspectorClient* client) argument
/external/chromium_org/third_party/zlib/
H A Ddeflate.c226 ushf *overlay; local
227 /* We overlay pending_buf and d_buf+l_buf. This works since the average
293 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
294 s->pending_buf = (uchf *) overlay;
304 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
963 ushf *overlay;
983 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
984 ds->pending_buf = (uchf *) overlay;
998 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
/external/qemu/distrib/zlib-1.2.8/
H A Ddeflate.c228 ushf *overlay; local
229 /* We overlay pending_buf and d_buf+l_buf. This works since the average
301 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
302 s->pending_buf = (uchf *) overlay;
312 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
1023 ushf *overlay;
1043 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
1044 ds->pending_buf = (uchf *) overlay;
1058 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
/external/zlib/src/
H A Ddeflate.c228 ushf *overlay; local
229 /* We overlay pending_buf and d_buf+l_buf. This works since the average
301 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
302 s->pending_buf = (uchf *) overlay;
312 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
1023 ushf *overlay;
1043 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
1044 ds->pending_buf = (uchf *) overlay;
1058 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
/external/chromium_org/third_party/jinja2/
H A Denvironment.py224 #: True if the environment is just an overlay
227 #: the environment this environment is linked to if it is an overlay
323 def overlay(self, block_start_string=missing, block_end_string=missing, member in class:Environment
332 """Create a new overlay environment that shares all the data with the
/external/chromium_org/v8/test/cctest/
H A Dtest-regexp.cc1623 Vector<const int> overlay = CharacterRange::GetWordBounds(); local
1626 CharacterRange::Split(base, overlay, &included, &excluded, &zone);
1631 for (int j = 0; !in_overlay && j < overlay.length(); j += 2) {
1632 if (overlay[j] <= i && i < overlay[j+1])
/external/deqp/framework/referencerenderer/
H A DrrFragmentOperations.cpp455 inline float overlay (float src, float dst) function in namespace:rr::advblend
620 case BLENDEQUATION_ADVANCED_OVERLAY: SAMPLE_REGISTER_ADV_BLEND(overlay); break;
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_deflate.c227 ushf *overlay; local
228 /* We overlay pending_buf and d_buf+l_buf. This works since the average
300 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
301 s->pending_buf = (uchf *) overlay;
311 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
1022 ushf *overlay;
1042 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
1043 ds->pending_buf = (uchf *) overlay;
1057 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A Ddsa_old.cpp770 const TOverlay overlay = {&aOverlay, aPriority}; local
771 return iOverlays.Insert(overlay, i);
H A Ddsa.cpp788 const TOverlay overlay = {&aOverlay, aPriority}; local
789 return iOverlays.Insert(overlay, i);
H A Ddsa_new.cpp514 const TOverlay overlay = {&aOverlay, aPriority}; local
515 return iOverlays.Insert(overlay, i);
/external/chromium_org/chrome/browser/themes/
H A Dbrowser_theme_pack.cc604 const gfx::ImageSkia& overlay,
609 overlay_(overlay),
625 // If they've provided a custom image, overlay it.
1400 // If there is no theme overlay, don't tint the default frame,
1462 gfx::ImageSkia overlay; local
1465 overlay = overlay_it->second.AsImageSkia();
1468 image_to_tint, overlay, hsl_shift, vertical_offset);
603 TabBackgroundImageSource(const gfx::ImageSkia& image_to_tint, const gfx::ImageSkia& overlay, const color_utils::HSL& hsl_shift, int vertical_offset) argument
/external/chromium_org/pdf/
H A Dinstance.cc719 bool overlay) {
720 scrollbar_reserved_thickness_ = overlay ? 0 : scrollbar_thickness_;
858 // overlay scrollbar that's over the background. We also do this in a separate
898 // Make sure that we only paint overlay controls over an area that's ready,
953 // If we're using overlay scrollbars, and there are pending paints under the
718 ScrollbarOverlayChanged(pp::Scrollbar_Dev scrollbar, bool overlay) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
H A Dglxapi.c1000 glXGetTransparentIndexSUN(Display *dpy, Window overlay, Window underlay, long *pTransparent) argument
1006 return (*t->GetTransparentIndexSUN)(dpy, overlay, underlay, pTransparent);
H A Dfakeglx.c188 * a list of overlay visuals. Get that list now.
216 * Return the level (overlay, normal, underlay) of a given XVisualInfo.
221 * >0 = overlay planes
235 /* search the overlay visual list for the visual ID of interest */
252 /* The visual ID was not found in the overlay list. */
511 /* The visual ID was not found in the overlay list. */
736 /* Search for the deepest overlay which satisifies all criteria. */
746 /* failed overlay level criteria */
1696 /* overlay */
2821 Fake_glXGetTransparentIndexSUN(Display *dpy, Window overlay, Windo argument
[all...]
/external/mesa3d/src/mesa/drivers/x11/
H A Dglxapi.c1000 glXGetTransparentIndexSUN(Display *dpy, Window overlay, Window underlay, long *pTransparent) argument
1006 return (*t->GetTransparentIndexSUN)(dpy, overlay, underlay, pTransparent);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
H A Dglx_api.c970 _mesa_warning(NULL, "overlay not supported");
2619 glXGetTransparentIndexSUN(Display *dpy, Window overlay, Window underlay, argument
2623 (void) overlay;

Completed in 6734 milliseconds

123