Searched defs:overlay (Results 1 - 25 of 65) sorted by relevance

123

/external/chromium_org/ash/sticky_keys/
H A Dsticky_keys_overlay_unittest.cc21 StickyKeysOverlay overlay; local
22 EXPECT_FALSE(overlay.is_visible());
23 overlay.Show(true);
24 EXPECT_TRUE(overlay.is_visible());
28 StickyKeysOverlay overlay; local
29 overlay.SetModifierKeyState(ui::EF_SHIFT_DOWN, STICKY_KEY_STATE_DISABLED);
30 overlay.SetModifierKeyState(ui::EF_ALT_DOWN, STICKY_KEY_STATE_LOCKED);
31 overlay.SetModifierKeyState(ui::EF_CONTROL_DOWN, STICKY_KEY_STATE_ENABLED);
34 overlay.GetModifierKeyState(ui::EF_SHIFT_DOWN));
36 overlay
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DPageOverlay.h51 WebPageOverlay* overlay() const { return m_overlay; } function in class:blink::PageOverlay
52 void setOverlay(WebPageOverlay* overlay) { m_overlay = overlay; } argument
H A DPageOverlay.cpp53 PassOwnPtr<PageOverlay> PageOverlay::create(WebViewImpl* viewImpl, WebPageOverlay* overlay) argument
55 return adoptPtr(new PageOverlay(viewImpl, overlay));
58 PageOverlay::PageOverlay(WebViewImpl* viewImpl, WebPageOverlay* overlay) argument
60 , m_overlay(overlay)
67 static PassOwnPtr<OverlayGraphicsLayerClientImpl> create(WebPageOverlay* overlay) argument
69 return adoptPtr(new OverlayGraphicsLayerClientImpl(overlay));
89 explicit OverlayGraphicsLayerClientImpl(WebPageOverlay* overlay) argument
90 : m_overlay(overlay)
122 // This is required for contents of overlay to stay in sync with the page while scrolling.
150 // WebPageOverlay does the actual painting of the overlay
[all...]
H A DPageOverlayList.cpp52 bool PageOverlayList::add(WebPageOverlay* overlay, int zOrder) argument
55 size_t index = find(overlay);
57 OwnPtr<PageOverlay> pageOverlay = PageOverlay::create(m_viewImpl, overlay);
66 // Adjust page overlay list order based on their z-order numbers. We first
67 // check if we need to move the overlay up and do so if needed. Otherwise,
86 // If we did move the overlay, that means z-order is changed and we need to
87 // update overlay layers' z-order. Otherwise, just update current overlay.
98 bool PageOverlayList::remove(WebPageOverlay* overlay) argument
100 size_t index = find(overlay);
121 find(WebPageOverlay* overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_lowvideo.h48 SDL_Overlay *overlay; member in struct:SDL_PrivateVideoData
56 #define current_overlay (_this->hidden->overlay)
H A DSDL_sysyuv.cc130 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);
245 BE_LockYUVOverlay(_THIS, SDL_Overlay* overlay) argument
256 BE_UnlockYUVOverlay(_THIS, SDL_Overlay* overlay) argument
266 BE_DisplayYUVOverlay(_THIS, SDL_Overlay* overlay, SDL_Rect* src, SDL_Rect *dst) argument
295 BE_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/chromium_org/ppapi/cpp/dev/
H A Dwidget_client_dev.cc56 PP_Bool overlay) {
62 Scrollbar_Dev(scrollbar_id), PP_ToBool(overlay));
54 Scrollbar_OverlayChanged(PP_Instance instance, PP_Resource scrollbar_id, PP_Bool overlay) argument
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuv.c38 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) argument
68 if ( overlay == NULL ) {
69 SDL_SetError("Passed NULL overlay");
75 SDL_UnlockYUVOverlay(SDL_Overlay *overlay) argument
83 SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect) argument
141 SDL_FreeYUVOverlay(SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_phyuv.c73 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);
281 ph_LockYUVOverlay(_THIS, SDL_Overlay* overlay) argument
327 ph_UnlockYUVOverlay(_THIS, SDL_Overlay* overlay) argument
337 ph_DisplayYUVOverlay(_THIS, SDL_Overlay* overlay, SDL_Rect* src, SDL_Rect* dst) argument
459 ph_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
H A DSDL_ph_video.h125 SDL_Overlay* overlay; member in struct:SDL_PrivateVideoData
144 #define current_overlay (this->hidden->overlay)
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/
H A DSDL_ps3yuv.c103 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
198 PS3_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
208 PS3_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
218 PS3_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
314 PS3_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DPageDebuggerAgent.cpp47 PassOwnPtrWillBeRawPtr<PageDebuggerAgent> PageDebuggerAgent::create(PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay) argument
49 return adoptPtrWillBeNoop(new PageDebuggerAgent(pageScriptDebugServer, pageAgent, injectedScriptManager, overlay));
52 PageDebuggerAgent::PageDebuggerAgent(PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay) argument
56 , m_overlay(overlay)
H A DInspectorDOMAgent.h98 static PassOwnPtrWillBeRawPtr<InspectorDOMAgent> create(InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay) argument
100 return adoptPtrWillBeNoop(new InspectorDOMAgent(pageAgent, injectedScriptManager, overlay));
H A DInspectorProfilerAgent.cpp87 PassOwnPtrWillBeRawPtr<InspectorProfilerAgent> InspectorProfilerAgent::create(InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay) argument
89 return adoptPtrWillBeNoop(new InspectorProfilerAgent(injectedScriptManager, overlay));
92 InspectorProfilerAgent::InspectorProfilerAgent(InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay) argument
99 , m_overlay(overlay)
H A DInspectorTimelineAgent.h117 InspectorOverlay* overlay, InspectorType type, InspectorClient* client)
119 return adoptPtrWillBeNoop(new InspectorTimelineAgent(pageAgent, layerTreeAgent, overlay, type, client));
116 create(InspectorPageAgent* pageAgent, InspectorLayerTreeAgent* layerTreeAgent, InspectorOverlay* overlay, InspectorType type, InspectorClient* client) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
H A Dsvga_overlay.h29 * Definitions for video-overlay support.
86 * Struct definitions for the video overlay commands built on
92 uint32 overlay; member in struct:__anon14085
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga_overlay.h29 * Definitions for video-overlay support.
86 * Struct definitions for the video overlay commands built on
92 uint32 overlay; member in struct:__anon27496
/external/netperf/
H A Dnetcpu_pstat.c66 } *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
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
H A DSDL_DirectFB_yuv.c153 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);
208 DirectFB_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
244 DirectFB_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
253 DirectFB_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
274 DirectFB_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
H A DSDL_dx5yuv.c124 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
196 DX5_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
242 DX5_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
250 DX5_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
283 DX5_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/chromium_org/chrome/browser/ui/app_list/
H A Dextension_app_item.cc54 // Draw the overlay in the bottom left corner of the icon.
55 const gfx::ImageSkia& overlay = *ui::ResourceBundle::GetSharedInstance(). variable
57 canvas->DrawImageInt(overlay, 0, icon_.height() - overlay.height());
147 // The overlay icon is disabled for hosted apps in windowed mode with
196 // Paint the shortcut overlay if necessary.
/external/chromium_org/ui/ozone/platform/dri/
H A Dgbm_surface_factory.cc38 OverlayCandidatesOzone::OverlaySurfaceCandidate* overlay; variable
40 overlay = second;
42 overlay = first;
47 if (overlay->plane_z_order > 0 &&
48 IsTransformSupported(overlay->transform)) {
49 overlay->overlay_handled = true;
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsyuv.c77 SDL_Overlay *overlay; local
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;
124 overlay->w = width;
125 overlay
308 GS_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
313 GS_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
318 GS_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
441 GS_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11yuv.c47 /* Workaround intel i810 video overlay waiting with failing until the
107 static void X11_ClearYUVOverlay(SDL_Overlay *overlay) argument
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
162 SDL_Overlay *overlay; local
472 X11_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
477 X11_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
482 X11_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
507 X11_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestoverlay.c18 SDL_Overlay *overlay; variable
274 rect.w=overlay->w;
275 rect.h=overlay->h;
280 SDL_DisplayYUVOverlay(overlay,&rect);
285 rect.w=overlay->w/2;
286 rect.h=overlay->h/2;
296 SDL_DisplayYUVOverlay(overlay,&rect);
318 fprintf(stderr, " -fullscreen (test overlay in fullscreen mode)\n");
480 SDL_WM_SetCaption("SDL test overlay", "testoverlay");
531 /* Create the overlay */
[all...]

Completed in 416 milliseconds

123