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

1 2 3 4

  /hardware/qcom/display/liboverlay/
overlayCtrl.cpp 22 namespace overlay{ namespace
90 } // overlay
mdpWrapper.h 34 * In order to make overlay::mdp_wrapper shorter, please do something like:
35 * namespace mdpwrap = overlay::mdp_wrapper;
45 namespace overlay{ namespace
227 overlay::utils::getFormatString(ov.format));
271 } // overlay
overlayMdp.cpp 29 namespace ovutils = overlay::utils;
30 namespace overlay { namespace
114 void MdpCtrl::setPosition(const overlay::utils::Dim& d) {
331 } // overlay
overlayMem.h 42 namespace overlay { namespace
208 } // overlay
overlayRotator.cpp 25 namespace ovutils = overlay::utils;
27 namespace overlay { namespace
141 overlay::Rotator *rot = NULL;
146 mRot[mUseCount] = overlay::Rotator::getRotator();
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...]
  /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.15/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...]
  /hardware/qcom/display/liboverlay/pipes/
overlayGenPipe.h 37 namespace overlay { namespace
58 /* commit changes to the overlay "set"*/
61 /* queue buffer to the overlay */
101 } //namespace overlay
overlayGenPipe.cpp 31 #include "overlay.h"
34 namespace overlay { namespace
52 mFbNum = Overlay::getInstance()->getExtFbNum();
102 void GenericPipe::setCrop(const overlay::utils::Dim& d) {
191 //Need an actual rotator. Modify overlay State Traits.
240 } //namespace overlay
  /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(),
  /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.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/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/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/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...]
  /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/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/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
AndroidTranslatorTest.java 48 ItemizedOverlayForTests overlay = new ItemizedOverlayForTests(null); local
49 overlay.triggerProtectedCall();
51 assertThat(shadowOf(overlay).isPopulated(), is(true));
  /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.15/src/video/x11/
SDL_x11yuv.c 47 /* Workaround intel i810 video overlay waiting with failing until the
107 static void X11_ClearYUVOverlay(SDL_Overlay *overlay)
111 switch (overlay->format)
115 for (y = 0; y < overlay->h; y++)
116 memset(overlay->pixels[0] + y * overlay->pitches[0],
117 0, overlay->w);
119 for (y = 0; y < (overlay->h / 2); y++)
121 memset(overlay->pixels[1] + y * overlay->pitches[1]
162 SDL_Overlay *overlay; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testoverlay2.c 3 * 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->h,overlay->planes
    [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;

Completed in 395 milliseconds

1 2 3 4