/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_yuv_sw_c.h | 27 /* 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);
|
SDL_yuvfuncs.h | 33 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);
|
/frameworks/base/core/tests/overlaytests/ |
README | 1 Unit tests for runtime resource overlay 4 As of this writing, runtime resource overlay is only triggered for 6 overlay packages require the Android platform be rebooted. However, the 11 Once runtime resource overlay may be applied to applications, the tests 13 applying runtime resource overlay to a dedicated test application, the
|
/packages/apps/VideoEditor/src/com/android/videoeditor/service/ |
MovieOverlay.java | 21 import android.media.videoeditor.Overlay;
26 * The representation of an overlay in the user interface
29 // Overlay types
62 * @param overlay The overlay
64 MovieOverlay(Overlay overlay) {
65 mUniqueId = overlay.getId();
66 mAppStartTimeMs = mStartTimeMs = overlay.getStartTime();
67 mAppDurationMs = mDurationMs = overlay.getDuration(); [all...] |
/hardware/qcom/display/liboverlay/ |
overlay.h | 38 namespace overlay { namespace 41 class Overlay : utils::NoCopy { 44 ~Overlay(); 75 /* Returns the singleton instance of overlay */ 76 static Overlay* getInstance(); 90 explicit Overlay(); 149 static Overlay *sInstance; 153 inline void Overlay::validate(int index) { 160 inline int Overlay::availablePipes(int dpy) { 171 inline void Overlay::setExtFbNum(int fbNum) [all...] |
overlay.cpp | 30 #include "overlay.h" 37 namespace overlay { namespace 40 Overlay::Overlay() { 49 Overlay::~Overlay() { 55 void Overlay::configBegin() { 64 void Overlay::configDone() { 84 eDest Overlay::nextPipe(eMdpPipeType type, int dpy) { 122 bool Overlay::commit(utils::eDest dest) [all...] |
/external/chromium-trace/trace-viewer/src/ |
profiling_view.css | 17 .profiling-overlay { 23 .profiling-overlay .raw-text { 29 .profiling-overlay .error {
|
/frameworks/base/core/java/android/view/ |
ViewGroupOverlay.java | 22 * A group overlay is an extra layer that sits on top of a ViewGroup 24 * (including the view group's children). Interaction with the overlay 40 * Adds a View to the overlay. The bounds of the added view should be 41 * relative to the host view. Any view added to the overlay should be 44 * <p>Views in the overlay are visual-only; they do not receive input 45 * events and do not participate in focus traversal. Overlay views 50 * before being added to the overlay. Also, if that parent is attached 54 * and 200 pixels down from the origin of the overlay's 57 * @param view The View to be added to the overlay. The added view will be 58 * drawn when the overlay is drawn [all...] |
ViewOverlay.java | 26 * An overlay is an extra layer that sits on top of a View (the "host view") 28 * if the view is a ViewGroup). Interaction with the overlay layer is done 31 * <p>An overlay requested from a ViewGroup is of type {@link ViewGroupOverlay}, 42 * All of the management and rendering details for the overlay are handled in 53 * of the overlay 61 * Adds a Drawable to the overlay. The bounds of the drawable should be relative to 62 * the host view. Any drawable added to the overlay should be removed when it is no longer 65 * @param drawable The Drawable to be added to the overlay. This drawable will be 66 * drawn when the view redraws its overlay. 74 * Removes the specified Drawable from the overlay [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt.overlay/META-INF/ |
MANIFEST.MF | 3 Bundle-Name: ADT XML Overlay 4 Bundle-SymbolicName: overlay.com.android.ide.eclipse.adt.overlay;singleton:=true
|
/frameworks/base/media/java/android/media/videoeditor/ |
OverlayFrame.java | 38 * This class is used to overlay an image on top of a media item. 41 public class OverlayFrame extends Overlay { 76 * @param overlayId The overlay id 77 * @param bitmap The bitmap to be used as an overlay. The size of the 80 * @param startTimeMs The overlay start time in milliseconds 81 * @param durationMs The overlay duration in milliseconds 98 * restore the overlay after it was saved internally by the video editor. 101 * @param overlayId The overlay id 102 * @param filename The file name that contains the overlay. 103 * @param startTimeMs The overlay start time in millisecond [all...] |
MediaItem.java | 91 private final List<Overlay> mOverlays; 147 mOverlays = new ArrayList<Overlay>(); 200 for (Overlay overlay : mOverlays) { 201 ((OverlayFrame)overlay).invalidateGeneratedFiles(); 405 * Add an overlay to the storyboard. This method invalidates a transition 406 * video clip if the overlay overlaps with a transition. 408 * @param overlay The overlay to add 410 * if the overlay id is not unique across all the overlays adde [all...] |
Overlay.java | 24 * This is the super class for all Overlay classes. 27 public abstract class Overlay { 33 * The overlay owner 48 private Overlay() { 56 * @param overlayId The overlay id 63 public Overlay(MediaItem mediaItem, String overlayId, long startTimeMs, 85 * Get the overlay ID. 87 * @return The of the overlay 94 * Get the duration of overlay. 96 * @return The duration of the overlay effec [all...] |
/frameworks/native/libs/utils/ |
README | 19 Resource overlay 26 Overlay packages are special .apk files which provide no code but 30 package or any associated overlay package. Any redirection is completely 36 * overlay package, matching config (eg res/values-en-land) 40 * overlay package, no config (eg res/values) 44 During compilation, overlay packages are differentiated from regular 133 The resource overlay extension 136 The resource overlay mechanism aims to (partly) shadow and extend 139 overlay packages) to existing resource namespaces, like so: 141 mPackageMap[0x00] -> system package -> system overlay packag [all...] |
/hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/ |
OMX_VPP_ImgConv.c | 101 if(pComponentPrivate->overlay){
102 if(pComponentPrivate->overlay->iOvlyConvBufPtr){
103 OMX_FREE(pComponentPrivate->overlay->iOvlyConvBufPtr);
104 pComponentPrivate->overlay->iOvlyConvBufPtr = NULL;
106 OMX_FREE(pComponentPrivate->overlay);
107 pComponentPrivate->overlay=NULL;
110 OMX_MALLOC(pComponentPrivate->overlay, sizeof(VPP_OVERLAY));
111 pComponentPrivate->overlay->iRBuff = NULL ;
112 pComponentPrivate->overlay->iGBuff = NULL;
113 pComponentPrivate->overlay->iBBuff = NULL; [all...] |
/development/apps/GestureBuilder/src/com/android/gesture/builder/ |
CreateGestureActivity.java | 46 GestureOverlayView overlay = (GestureOverlayView) findViewById(R.id.gestures_overlay); local 47 overlay.addOnGestureListener(new GesturesProcessor()); 65 final GestureOverlayView overlay = local 67 overlay.post(new Runnable() { 69 overlay.setGesture(mGesture); 111 public void onGestureStarted(GestureOverlayView overlay, MotionEvent event) { 116 public void onGesture(GestureOverlayView overlay, MotionEvent event) { 119 public void onGestureEnded(GestureOverlayView overlay, MotionEvent event) { 120 mGesture = overlay.getGesture(); 122 overlay.clear(false) [all...] |
/external/chromium/chrome/browser/resources/ |
keyboard_overlay.html | 9 <body class="keyboard-overlay-keyboard"></body>
|
/external/jmonkeyengine/engine/src/core-effects/Common/MatDefs/Post/ |
Overlay.j3md | 25 FragmentShader GLSL100: Common/MatDefs/Post/Overlay.frag
|
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/ |
SDL_DirectFB_yuv.h | 31 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);
|
/external/qemu/distrib/sdl-1.2.15/src/video/photon/ |
SDL_phyuv_c.h | 57 extern int ph_LockYUVOverlay(_THIS, SDL_Overlay* overlay); 58 extern void ph_UnlockYUVOverlay(_THIS, SDL_Overlay* overlay); 59 extern int ph_DisplayYUVOverlay(_THIS, SDL_Overlay* overlay, SDL_Rect* src, SDL_Rect* dst); 60 extern void ph_FreeYUVOverlay(_THIS, SDL_Overlay* overlay);
|
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/ |
SDL_gsyuv_c.h | 31 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/ps3/ |
SDL_ps3yuv_c.h | 38 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);
|
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/ |
SDL_dx5yuv_c.h | 32 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);
|
/external/qemu/distrib/sdl-1.2.15/src/video/x11/ |
SDL_x11yuv_c.h | 33 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);
|
/frameworks/base/core/tests/overlaytests/OverlayTestOverlay/ |
Android.mk | 10 LOCAL_PACKAGE_NAME := com.android.overlaytest.overlay
|