Searched refs:overlay (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/base/core/tests/overlaytests/OverlayTestOverlay/
H A DAndroid.mk10 LOCAL_PACKAGE_NAME := com.android.overlaytest.overlay
/frameworks/base/media/java/android/media/videoeditor/
H A DMediaItem.java200 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 added
413 * @throws FileNotFoundException, IOException if overlay could not be saved
416 public void addOverlay(Overlay overlay) throws FileNotFoundException, IOException { argument
417 if (overlay
[all...]
H A DMediaImageItem.java301 * an overlay is overlapping with the end transition
306 * because an effect or an overlay overlaps with the beginning
321 * an overlay was not overlapping with the beginning or end transitions
370 * an overlay.
372 for (Overlay overlay : overlays) {
374 * Check if the overlay overlaps with the end transition
376 if (overlay.getStartTime() < transitionDurationMs) {
412 * an overlay.
415 for (Overlay overlay : overlays) {
417 * Check if the overlay overlap
[all...]
H A DOverlayFrame.java38 * This class is used to overlay an image on top of a media item.
76 * @param overlayId The overlay id
77 * @param bitmap The bitmap to be used as an overlay. The size of the
80 * @param startTimeMs The overlay start time in milliseconds
81 * @param durationMs The overlay duration in milliseconds
98 * restore the overlay after it was saved internally by the video editor.
101 * @param overlayId The overlay id
102 * @param filename The file name that contains the overlay.
103 * @param startTimeMs The overlay start time in milliseconds
104 * @param durationMs The overlay duratio
310 generateOverlayWithRenderingMode(MediaItem mediaItemsList, OverlayFrame overlay, int height , int width) argument
[all...]
H A DVideoEditorImpl.java73 private static final String TAG_OVERLAY = "overlay";
819 for (Overlay overlay : overlays) {
820 if (overlay instanceof OverlayFrame) {
821 final OverlayFrame overlayFrame = (OverlayFrame)overlay;
1027 Log.w(TAG, "Cannot load overlay", ex);
1241 * Parse the overlay
1246 * @return The overlay
1254 final Overlay overlay;
1257 overlay = new OverlayFrame(mediaItem, overlayId, filename, startTimeMs, durationMs);
1259 throw new IllegalArgumentException("Invalid overlay typ
[all...]
H A DMediaArtistNativeHelper.java1943 * @param overlay The reference of OverlayFrame
1945 * @return The populated overlay settings in EffectSettings reference
1947 EffectSettings getOverlaySettings(OverlayFrame overlay) { argument
1951 effectSettings.startTime = (int)overlay.getStartTime();
1952 effectSettings.duration = (int)overlay.getDuration();
1959 if ((bitmap = overlay.getBitmap()) != null) {
1960 effectSettings.framingFile = overlay.getFilename();
1964 (overlay).save(mProjectPath);
1968 effectSettings.framingFile = overlay.getFilename();
2013 effectSettings.width = overlay
[all...]
H A DTransition.java279 * Checks if the effect and overlay applied on a media item
298 for (Overlay overlay : overlays) {
299 tmpEffectSettings = mNativeHelper.getOverlaySettings((OverlayFrame)overlay);
/frameworks/base/core/tests/overlaytests/
H A Druntests.sh73 echo "Disabling overlay"
74 $adb shell rm /vendor/overlay/framework/framework-res.apk
75 $adb shell rm /data/resource-cache/vendor@overlay@framework@framework-res.apk@idmap
80 echo "Enabling overlay"
82 mkdir_if_needed "/vendor/overlay/framework"
83 $adb shell ln -s /data/app/com.android.overlaytest.overlay.apk /vendor/overlay/framework/framework-res.apk
114 # instrument test (without overlay)
121 # instrument test (with overlay)
/frameworks/base/include/androidfw/
H A DObbFile.h98 void setOverlay(bool overlay) { argument
99 if (overlay) {
H A DKeyCharacterMap.h61 // Either base or overlay layout ok.
78 /* Combines a base key character map and an overlay. */
80 const sp<KeyCharacterMap>& overlay);
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/
H A DWebView.java68 public void setHorizontalScrollbarOverlay(boolean overlay) { argument
71 public void setVerticalScrollbarOverlay(boolean overlay) { argument
/frameworks/base/tools/obbtool/
H A DMain.cpp43 {"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);
216 package_info.overlay = true;
/frameworks/ex/chips/tests/
H A DAndroid.mk26 LOCAL_AAPT_FLAGS := --auto-add-overlay
/frameworks/base/services/java/com/android/server/display/
H A DOverlayDisplayAdapter.java40 * A display adapter that uses overlay windows to simulate secondary displays
42 * overlay displays.
81 for (OverlayDisplayHandle overlay : mOverlays) {
82 overlay.dumpLocked(pw);
126 Slog.i(TAG, "Dismissing all overlay display devices.");
127 for (OverlayDisplayHandle overlay : mOverlays) {
128 overlay.dismissLocked();
138 Slog.w(TAG, "Too many overlay display devices specified: " + value);
155 Slog.i(TAG, "Showing overlay display device #" + number
168 Slog.w(TAG, "Malformed overlay displa
[all...]
/frameworks/base/libs/androidfw/
H A DKeyCharacterMap.cpp164 const sp<KeyCharacterMap>& overlay) {
165 if (overlay == NULL) {
169 return overlay;
173 for (size_t i = 0; i < overlay->mKeys.size(); i++) {
174 int32_t keyCode = overlay->mKeys.keyAt(i);
175 Key* key = overlay->mKeys.valueAt(i);
185 for (size_t i = 0; i < overlay->mKeysByScanCode.size(); i++) {
186 map->mKeysByScanCode.replaceValueFor(overlay->mKeysByScanCode.keyAt(i),
187 overlay->mKeysByScanCode.valueAt(i));
190 for (size_t i = 0; i < overlay
163 combine(const sp<KeyCharacterMap>& base, const sp<KeyCharacterMap>& overlay) argument
[all...]
/frameworks/base/core/java/android/gesture/
H A DGestureOverlayView.java38 * A transparent overlay for gesture input that can be placed on top of other
777 void onGesturingStarted(GestureOverlayView overlay); argument
779 void onGesturingEnded(GestureOverlayView overlay); argument
783 void onGestureStarted(GestureOverlayView overlay, MotionEvent event); argument
785 void onGesture(GestureOverlayView overlay, MotionEvent event); argument
787 void onGestureEnded(GestureOverlayView overlay, MotionEvent event); argument
789 void onGestureCancelled(GestureOverlayView overlay, MotionEvent event); argument
793 void onGesturePerformed(GestureOverlayView overlay, Gesture gesture); argument
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java66 public void setHorizontalScrollbarOverlay(boolean overlay); argument
68 public void setVerticalScrollbarOverlay(boolean overlay); argument
H A DWebView.java515 * Specifies whether the horizontal scrollbar has overlay style.
517 * @param overlay true if horizontal scrollbar should have overlay style
519 public void setHorizontalScrollbarOverlay(boolean overlay) { argument
521 mProvider.setHorizontalScrollbarOverlay(overlay);
525 * Specifies whether the vertical scrollbar has overlay style.
527 * @param overlay true if vertical scrollbar should have overlay style
529 public void setVerticalScrollbarOverlay(boolean overlay) { argument
531 mProvider.setVerticalScrollbarOverlay(overlay);
[all...]
/frameworks/ex/photoviewer/sample/
H A DAndroid.mk38 LOCAL_AAPT_FLAGS := --auto-add-overlay
/frameworks/opt/photoviewer/sample/
H A DAndroid.mk38 LOCAL_AAPT_FLAGS := --auto-add-overlay
/frameworks/base/tools/aapt/
H A DResourceTable.h137 bool overlay = false,
444 bool overlay = false,
532 bool overlay,
H A DAaptAssets.h585 inline void setOverlay(sp<AaptAssets>& overlay) { mOverlay = overlay; } argument
H A DResource.cpp575 // Replace any base level files in this category with any found from the overlay
576 // Also add any found only in the overlay.
577 sp<AaptAssets> overlay = assets->getOverlay(); local
581 while (overlay.get()) {
582 KeyedVector<String8, sp<ResourceTypeSet> >* overlayRes = overlay->getResources();
584 // get the overlay resources of the requested type
590 // non-overlay "baseset".
631 printf("found a match (" ZD ") for overlay file %s, for flavor %s\n",
640 printf("nothing matches overlay file %s, for flavor %s\n",
653 // this group doesn't exist (a file that's only in the overlay)
2556 sp<AaptAssets> overlay = assets->getOverlay(); local
[all...]
H A DResourceTable.cpp1744 bool overlay,
1765 if (overlay && !mBundle->getAutoAddOverlay() && !hasBagOrEntry(package, type, name)) {
1777 sourcePos.error("Resource does not already exist in overlay at '%s'; use <add-resource> to add.\n",
1782 sp<Entry> e = getEntry(package, type, name, sourcePos, overlay, params);
1796 if (overlay && replace) {
3470 bool overlay,
3476 if (overlay && !autoAddOverlay && mCanAddEntries.indexOf(entry) < 0) {
3477 sourcePos.error("Resource at %s appears in overlay but not"
3785 bool overlay,
3793 return t->getEntry(name, sourcePos, config, doSetIndex, overlay, mBundl
1738 startBag(const SourcePos& sourcePos, const String16& package, const String16& type, const String16& name, const String16& bagParent, const ResTable_config* params, bool overlay, bool replace, bool isId) argument
3466 getEntry(const String16& entry, const SourcePos& sourcePos, const ResTable_config* config, bool doSetIndex, bool overlay, bool autoAddOverlay) argument
3781 getEntry(const String16& package, const String16& type, const String16& name, const SourcePos& sourcePos, bool overlay, const ResTable_config* config, bool doSetIndex) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java130 * Create all windows necessary for the status bar (including navigation, overlay panels, etc)
826 Intent overlay = new Intent();
827 overlay.setSourceBounds(
830 mIntent.send(mContext, 0, overlay);

Completed in 3749 milliseconds

12