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

1 2 3

  /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/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_lowvideo.h 48 SDL_Overlay *overlay; member in struct:SDL_PrivateVideoData
56 #define current_overlay (_this->hidden->overlay)
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...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
OverlayView.java 34 * Overlay view
42 // The overlay is displayed
208 final MovieOverlay overlay = mediaItem.getOverlay(); local
209 if (overlay != null) {
210 ImageUtils.buildOverlayPreview(getContext(), canvas, overlay.getType(),
211 overlay.getTitle(), overlay.getSubtitle(),
OverlayLinearLayout.java 60 // Default overlay duration
76 * The overlay listener
80 * Add a new overlay
86 * The overlay action mode handler.
127 final MovieOverlay overlay = mMediaItem.getOverlay(); local
128 intent.putExtra(OverlayTitleEditor.PARAM_OVERLAY_ID, overlay.getId());
130 overlay.buildUserAttributes());
251 // The duration of the timeline does not change while moving the Overlay
513 * A new overlay was added
515 * @param mediaItemId The media item which owns the overlay
610 final MovieOverlay overlay = mediaItem.getOverlay(); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SecureView.java 40 * overlay the contents of the activity in such a way as to make the user believe the buttons
44 * To simulate the spoofing risk, this activity pops up a specially crafted overlay as
46 * For the purposes of this demonstration, pretend that the overlay was actually popped
99 SecureViewOverlay overlay = (SecureViewOverlay) local
101 overlay.setActivityToSpoof(this);
105 toast.setView(overlay);
  /external/qemu/distrib/sdl-1.2.12/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...]
SDL_yuv_sw.c 24 /* 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->w = width
    [all...]
  /external/qemu/distrib/sdl-1.2.12/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...]
SDL_ph_video.h 125 SDL_Overlay* overlay; member in struct:SDL_PrivateVideoData
144 #define current_overlay (this->hidden->overlay)
  /external/qemu/distrib/sdl-1.2.12/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.12/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/webkit/Source/WebKit/qt/WebCoreSupport/
PageClientQt.h 112 // the overlay is here for one reason only: to have the scroll-bars and other
158 , overlay(0)
162 // the overlay and stays alive for the lifetime of
230 // the overlay gets instantiated when the root layer is attached, and get deleted when it's detached
231 QGraphicsItemOverlay* overlay; member in class:WebCore::PageClientQGraphicsWidget
233 // we need to put the root graphics layer behind the overlay (which contains the scrollbar)
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestMultiplesFilters.java 99 final ColorOverlayFilter overlay = new ColorOverlayFilter(ColorRGBA.LightGray); local
108 fpp.addFilter(overlay);
139 if (overlay.isEnabled()) {
140 overlay.setEnabled(false);
142 overlay.setEnabled(true);
  /external/netperf/
netcpu_pstat.c 66 } *overlay; local
76 overlay = (union overlay_u *)&(res[i]);
77 overlay->word[0] = psp[i].psp_idlecycles.psc_hi;
78 overlay->word[1] = psp[i].psp_idlecycles.psc_lo;
146 } *overlay; local
147 overlay = (union overlay_u *)&(firstcnt[j]);
148 overlay->word[0] = psp[j].psp_idlecycles.psc_hi;
149 overlay->word[1] = psp[j].psp_idlecycles.psc_lo;
182 } *overlay; local
183 overlay = (union overlay_u *)&(secondcnt[j])
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11yuv.c 95 SDL_Overlay *overlay; local
197 /* Enable auto-painting of the overlay colorkey */
221 /* Create the overlay structure */
222 overlay = (SDL_Overlay *)SDL_malloc(sizeof *overlay);
223 if ( overlay == NULL ) {
228 SDL_memset(overlay, 0, (sizeof *overlay));
231 overlay->format = format;
232 overlay->w = width
    [all...]
  /frameworks/base/tools/obbtool/
Main.cpp 43 {"overlay", optional_argument, NULL, 'o'},
54 , overlay(false)
62 bool overlay; member in class:PackageInfo
81 " -o sets the OBB overlay flag\n"
101 obb->setOverlay(info->overlay);
141 printf(" Overlay: %s\n", obb->isOverlay() ? "true" : "false");
216 package_info.overlay = true;
  /frameworks/base/media/java/android/media/videoeditor/
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...]
  /external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
SDL_gsyuv.c 77 SDL_Overlay *overlay; local
91 SDL_SetError("Overlay width/height must be multiples of 16");
96 SDL_SetError("Overlay too large (maximum size: %d pixels)",
114 /* Create the overlay structure */
115 overlay = (SDL_Overlay *)SDL_malloc(sizeof *overlay);
116 if ( overlay == NULL ) {
120 SDL_memset(overlay, 0, (sizeof *overlay));
123 overlay->format = format
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qgraphicswebview.cpp 80 QGraphicsItemOverlay* overlay() const function in class:QGraphicsWebViewPrivate
84 return pageClient()->overlay;
298 page()->mainFrame()->render(painter, d->overlay() ? QWebFrame::ContentsLayer : QWebFrame::AllLayers, option->exposedRect.toAlignedRect());
509 if (d->overlay())
510 d->overlay()->prepareGraphicsItemGeometryChange();
622 if (d->overlay())
623 d->overlay()->prepareGraphicsItemGeometryChange();
640 if (d->overlay())
641 d->overlay()->prepareGraphicsItemGeometryChange();
  /external/aac/libAACdec/src/
channelinfo.h 259 } overlay; member in struct:__anon1604
270 * - pComData->overlay memory pointed to can be overwritten after each CChannelElement_Decode() call..
  /external/qemu/distrib/zlib-1.2.3/
deflate.c 231 ushf *overlay; local
232 /* 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);
903 ushf *overlay;
    [all...]
  /external/zlib/
deflate.c 228 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);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ShortcutIntentBuilder.java 343 Drawable overlay = mContext.getResources().getDrawableForDensity( local
346 overlay.setBounds(dst);
347 overlay.draw(canvas);
354 * Generates a phone number shortcut icon. Adds an overlay describing the type of the phone
379 // Create an overlay for the phone number type
380 CharSequence overlay = Phone.getTypeLabel(r, phoneType, phoneLabel); local
382 if (overlay != null) {
402 overlay = TextUtils.ellipsize(overlay, textPaint, mIconSize - 2 * sidePadding,
404 final float textWidth = textPaint.measureText(overlay, 0, overlay.length())
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
ApiService.java 50 import android.media.videoeditor.Overlay;
2140 final Overlay overlay = overlays.get(0); local
2545 final OverlayFrame overlay = new OverlayFrame(mediaItem, local
2599 final Overlay overlay = mediaItem.getOverlay( local
2625 final Overlay overlay = mediaItem.getOverlay( local
2651 final Overlay overlay = mediaItem.getOverlay( local
3663 final MovieOverlay overlay = videoProject.getOverlay(mediaItemId, overlayId); local
3694 final MovieOverlay overlay = videoProject.getOverlay(mediaItemId, overlayId); local
3726 final MovieOverlay overlay = videoProject.getOverlay(mediaItemId, local
4388 final Overlay overlay = new OverlayFrame(mediaItem, generateId(), local
4521 final Overlay overlay = new OverlayFrame(mediaItem, generateId(), local
    [all...]

Completed in 638 milliseconds

1 2 3