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

1 2 3 4 5 6 7 8 9

  /hardware/qcom/display/msm8226/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;
47 namespace overlay{ namespace
311 overlay::utils::getFormatString(ov.format));
355 } // overlay
  /hardware/qcom/display/msm8960/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
  /hardware/qcom/display/msm8974/liboverlay/
overlayCtrl.cpp 22 namespace overlay{ namespace
90 } // overlay
  /hardware/qcom/display/msm8974/liboverlay/pipes/
overlayGenPipe.h 36 namespace overlay { namespace
57 /* commit changes to the overlay "set"*/
60 /* queue buffer to the overlay */
99 } //namespace overlay
  /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_org/ash/sticky_keys/
sticky_keys_overlay_unittest.cc 54 StickyKeysOverlay overlay; local
55 EXPECT_FALSE(overlay.is_visible());
56 overlay.Show(true);
57 EXPECT_TRUE(overlay.is_visible());
61 StickyKeysOverlay overlay; local
62 overlay.SetModifierKeyState(ui::EF_SHIFT_DOWN, STICKY_KEY_STATE_DISABLED);
63 overlay.SetModifierKeyState(ui::EF_ALT_DOWN, STICKY_KEY_STATE_LOCKED);
64 overlay.SetModifierKeyState(ui::EF_CONTROL_DOWN, STICKY_KEY_STATE_ENABLED);
67 overlay.GetModifierKeyState(ui::EF_SHIFT_DOWN));
69 overlay.GetModifierKeyState(ui::EF_ALT_DOWN))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PageOverlay.h 53 WebPageOverlay* overlay() const { return m_overlay; } function in class:blink::PageOverlay
54 void setOverlay(WebPageOverlay* overlay) { m_overlay = overlay; }
  /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/msm8084/liboverlay/pipes/
overlayGenPipe.h 36 namespace overlay { namespace
57 /* commit changes to the overlay "set"*/
60 /* queue buffer to the overlay */
100 } //namespace overlay
overlayGenPipe.cpp 33 namespace overlay { namespace
50 void GenericPipe::setCrop(const overlay::utils::Dim& d) {
156 } //namespace overlay
  /hardware/qcom/display/msm8226/liboverlay/pipes/
overlayGenPipe.h 36 namespace overlay { namespace
57 /* commit changes to the overlay "set"*/
60 /* queue buffer to the overlay */
98 } //namespace overlay
  /hardware/qcom/display/msm8960/liboverlay/pipes/
overlayGenPipe.h 37 namespace overlay { namespace
58 /* commit changes to the overlay "set"*/
61 /* queue buffer to the overlay */
101 } //namespace overlay
  /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...]
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_fbupdate.h 23 #include "overlay.h"
28 namespace overlay { namespace
33 namespace ovutils = overlay::utils;
40 // Sets up members and prepares overlay if conditions are met
55 overlay::Rotator *mRot;
  /hardware/qcom/display/msm8084/liboverlay/
mdpWrapper.h 34 * In order to make overlay::mdp_wrapper shorter, please do something like:
35 * namespace mdpwrap = overlay::mdp_wrapper;
47 namespace overlay{ namespace
323 overlay::utils::getFormatString(ov.format));
367 } // overlay
overlayWriteback.h 34 namespace overlay { namespace
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_fbupdate.h 23 #include "overlay.h"
28 namespace overlay { namespace
33 namespace ovutils = overlay::utils;
40 // Sets up members and prepares overlay if conditions are met
55 overlay::Rotator *mRot;

Completed in 385 milliseconds

1 2 3 4 5 6 7 8 9