HomeSort by relevance Sort by last modified time
    Searched full:overlay (Results 126 - 150 of 849) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/VideoEditor/src/com/android/videoeditor/
OverlayType.java 24 * An overlay
32 * @return The array of 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/chromium/chrome/browser/resources/options/
language_options.css 87 html[os=chromeos] #add-language-overlay-language-list {
92 html[os=chromeos] #add-language-overlay-cancel-button {
99 html[os=chromeos] #add-language-overlay-page {
104 html[os=chromeos] #add-language-overlay-page button.link-button {
109 html[os=chromeos] #add-language-overlay-page ul {
169 #add-language-overlay-page .content-area {
alert_overlay.js 48 * Handle the 'ok' button. Clear the overlay and call the ok callback if
60 * Handle the 'cancel' button. Clear the overlay and call the cancel
85 * Show an alert overlay with the given message, button titles, and
  /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)
  /hardware/samsung_slsi/exynos5/include/
s5p_fimc_v4l2.h 89 FIMC_OVLY_NOT_FIXED = 0x0, /* Overlay mode isn't fixed. */
90 FIMC_OVLY_FIFO = 0x1, /* Non-destructive Overlay with FIFO */
91 FIMC_OVLY_DMA_AUTO = 0x2, /* Non-destructive Overlay with DMA */
92 FIMC_OVLY_DMA_MANUAL = 0x3, /* Non-destructive Overlay with DMA */
93 FIMC_OVLY_NONE_SINGLE_BUF = 0x4, /* Destructive Overlay with DMA single destination buffer */
94 FIMC_OVLY_NONE_MULTI_BUF = 0x5, /* Destructive Overlay with DMA multiple dstination buffer */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MarqueeGesture.java 36 /** The {@link Overlay} drawn for the marquee. */
86 public List<Overlay> createOverlays() {
88 return Collections.<Overlay> singletonList(mOverlay);
92 * An {@link Overlay} for the {@link MarqueeGesture}; paints a selection
93 * overlay rectangle matching the mouse coordinate delta between gesture
96 private static class MarqueeOverlay extends Overlay {
  /external/chromium/chrome/browser/resources/
keyboard_overlay.js 82 * Returns the keyboard overlay ID.
179 var classes = ['keyboard-overlay-key'];
368 key.className = 'keyboard-overlay-key';
376 keyText.className = 'keyboard-overlay-key-text';
382 shortcutText.className = 'keyboard-overlay-shortcut-text';
400 instructions.className = 'keyboard-overlay-instructions';
412 instructionsText.className = 'keyboard-overlay-instructions-text';
417 instructionsHideText.className = 'keyboard-overlay-instructions-hide-text';
433 * Initializes the global keyboad overlay ID and the layout of keys.
437 // Libcros returns an empty string when it cannot find the keyboard overlay I
    [all...]
  /external/kernel-headers/original/video/
dsscomp.h 224 * direct interface to the DSS2 overlay and overlay_manager modules.
236 * 1) check if DSS supports an overlay configuration, use DSSCIOC_CHECK_OVL
237 * ioctl with the manager, overlay, and setup-mode information filled out.
239 * display/render the overlay.
245 * Do this for each overlay before attempting to configure DSS.
271 * DSS2 overlay information. This structure contains all information
272 * needed to set up the overlay for a particular buffer to be displayed
279 * whole manager/overlay settings, and is enabled unless overlay is
291 * 5) color_mode is supported by overlay
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/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...]
  /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;
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
SmartDialController.java 203 // Used to track whether or not to animate the overlay. In the case where the suggestion
205 // has not changed, the overlay at i should be hidden immediately. Overlay animations are
207 // overlay multiple times.
216 // Retrieve the former overlay to be used as the new active view
224 // The former active view will now be used as an overlay for the cross-fade effect
225 final LinearLayout overlay = mViews.get(i); local
259 mList.getOverlay().add(overlay);
263 mViewOverlays.set(i, overlay);
266 // Separate loop for overlay animations. At this point in time {@link #mViewOverlays
269 final LinearLayout overlay = mViewOverlays.get(i); local
    [all...]
  /hardware/qcom/display/libhwcomposer/
hwc_fbupdate.cpp 27 namespace ovutils = overlay::utils;
65 overlay::Overlay& ov = *(ctx->mOverlay);
133 overlay::Overlay& ov = *(ctx->mOverlay);
169 overlay::Overlay& ov = *(ctx->mOverlay);
270 overlay::Overlay& ov = *(ctx->mOverlay);
  /cts/tests/tests/display/src/android/display/cts/
DisplayTest.java 29 // This test is called from DisplayTestRunner which brings up an overlay display on the target
30 // device. The overlay display parameters must match the ones defined there which are
41 private static final String OVERLAY_DISPLAY_NAME_PREFIX = "Overlay #";
69 * Verify that the getDisplays method returns both a default and an overlay display.
172 * Test that the getFlags method returns no flag bits set for the overlay display.
  /external/chromium/chrome/browser/ui/cocoa/
fullscreen_controller.h 65 // |kFullScreenModeHideAll| while the overlay is hidden, and
66 // |kFullScreenModeHideDock| while the overlay is shown. If the window is not
92 // avoid the menu) and by which the overlay view should be enlarged vertically.
97 // Informs the controller that the overlay's frame has changed. The controller
101 // Informs the controller that the overlay should be shown/hidden, possibly with
  /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);
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/tests/
VPPTest.c 350 APP_DPRINT("VPPTEST:: overlay port is %d\n", pVppPortDef->overlay_port);
528 printf("usage: %S <input.yuv><file_desc><Inp. Width><Inp. Height><Inp. color><0:no overlay/1:overlay><Out. Width><Out Height><yuv color><rgb color><0 :Internal 1 :external allocation><Feature [0-8]>\n",
532 printf("usage: %s <input.yuv><file_desc><Inp. Width><Inp. Height><Inp. color><0:no overlay/1:overlay><Out. Width><Out Height><yuv color><rgb color><0 :Internal 1 :external allocation><Feature [0-8]>\n",
617 printf("usage: %S <input.yuv> <output desc> <Inp. width> <Inp. Height> <0:no overlay/1:overlay> <outputwidth> <outputheight> <0:YUV/1:RGB/2:BOTH> <0 :Internal 1 :external allocation>\
620 printf("usage: %s <input.yuv> <output desc> <Inp. width> <Inp. Height> <0:no overlay/1:overlay> <outputwidth> <outputheight> <0:YUV/1:RGB/2:BOTH> <0 :Internal 1 :external allocation>\
644 printf("usage: %S <input.yuv> <output.rgb> <inputwidth> <inputheight> <0:no overlay/1:overlay> <outputwidth> <outputheight> <0:YUV/1:RGB/2:BOTH> <0 :Internal 1 :external allocation (…)
    [all...]
  /frameworks/base/media/java/android/media/videoeditor/
VideoEditorImpl.java 73 private static final String TAG_OVERLAY = "overlay";
817 final List<Overlay> overlays = mediaItem.getAllOverlays();
819 for (Overlay overlay : overlays) {
820 if (overlay instanceof OverlayFrame) {
821 final OverlayFrame overlayFrame = (OverlayFrame)overlay;
979 Overlay currentOverlay = null
1254 final Overlay overlay; local
    [all...]
  /external/chromium/chrome/browser/ui/views/frame/
contents_container.cc 14 // Min/max opacity of the overlay.
18 // View used to track when the overlay widget is destroyed. If the
104 // overlay ends up obscuring the omnibox.
  /external/chromium/chrome/common/
badge_util.cc 61 // Calculate the proper style/text overlay to render on the badge.
85 // Render the badge bitmap and overlay into a canvas.
90 // Draw the text overlay centered horizontally and vertically. Skia expects
  /external/qemu/distrib/sdl-1.2.15/docs/html/
sdlfreeyuvoverlay.html 83 >SDL_FreeYUVOverlay&nbsp;--&nbsp;Free a YUV video overlay</DIV
109 >(SDL_Overlay *overlay);</CODE
128 >overlay</I
sdllockyuvoverlay.html 83 >SDL_LockYUVOverlay&nbsp;--&nbsp;Lock an overlay</DIV
109 >(SDL_Overlay *overlay);</CODE
137 >overlay</I
  /packages/apps/Contacts/res/values/
donottranslate_config.xml 56 the overlay will fill this in during build time. -->
60 the overlay will fill this in during build time. -->
64 the overlay will fill this in during build time. -->
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
ApiServiceListener.java 325 * A new overlay was added
328 * @param overlay The newly added overlay
332 public void onOverlayAdded(String projectPath, MovieOverlay overlay,
336 * A overlay was removed
339 * @param overlayId The id of the overlay
347 * The overlay start time was set
350 * @param overlayId The id of the overlay
359 * The overlay duration was set
362 * @param overlayId The id of the overlay
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/util/
ImageUtils.java 233 * Build an overlay image
237 * @param overlayType The overlay type
283 throw new IllegalArgumentException("Unsupported overlay type: " + overlayType);
291 * Build an overlay image in the center third of the image
295 * @param drawableId The overlay background drawable if
334 * Build an overlay image in the lower third of the image
338 * @param drawableId The overlay background drawable if
376 * Build an overlay preview image
380 * @param overlayType The overlay type
406 throw new IllegalArgumentException("Unsupported overlay type: " + overlayType)
    [all...]

Completed in 1090 milliseconds

1 2 3 4 56 7 8 91011>>