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

/frameworks/base/tools/aapt2/link/
H A DTableMerger_test.cpp149 std::unique_ptr<ResourceTable> overlay = test::ResourceTableBuilder() local
160 ASSERT_TRUE(merger.mergeOverlay({}, overlay.get()));
H A DTableMerger.cpp39 return mergeImpl(src, table, collection, false /* overlay */, true /* allow new */);
44 return mergeImpl(src, table, collection, true /* overlay */, mOptions.autoAddOverlay);
52 bool overlay, bool allowNew) {
89 false /* mangle */, overlay, allowNew, callback);
127 mangle, false /* overlay */, true /* allow new */, callback);
136 const bool overlay,
186 "--auto-add-overlay");
224 if (collisionResult == 0 && !overlay) {
294 bool TableMerger::mergeFileImpl(const ResourceFile& fileDesc, io::IFile* file, bool overlay) { argument
310 false /* mangle */, overlay /* overla
50 mergeImpl(const Source& src, ResourceTable* table, io::IFileCollection* collection, bool overlay, bool allowNew) argument
132 doMerge(const Source& src, ResourceTable* srcTable, ResourceTablePackage* srcPackage, const bool manglePackage, const bool overlay, const bool allowNewResources, FileMergeCallback callback) argument
[all...]
/frameworks/base/include/androidfw/
H A DObbFile.h98 void setOverlay(bool overlay) { argument
99 if (overlay) {
/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/base/cmds/idmap/
H A Dscan.cpp44 const Overlay& overlay = overlayVector[i]; local
45 fprintf(fout, "%s %s\n", overlay.apk_path.string(), overlay.idmap_path.string());
112 if (tag == String16("overlay")) {
209 ALOGE("error: failed to create idmap for target=%s overlay=%s idmap=%s\n",
214 Overlay overlay(String8(overlay_apk_path), idmap_path, priority);
215 overlayVector.add(overlay);
/frameworks/base/core/java/android/widget/
H A DQuickContactBadge.java115 final Drawable overlay = mOverlay;
116 if (overlay != null && overlay.isStateful()
117 && overlay.setState(getDrawableState())) {
118 invalidateDrawable(overlay);
287 * @param overlay Drawable to be drawn over the assigned contact photo. Must have a non-zero
290 public void setOverlay(Drawable overlay) { argument
291 mOverlay = overlay;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetailItems.java184 if (item.overlay != null) {
185 item.overlay.setBounds(0, 0, item.overlay.getIntrinsicWidth(),
186 item.overlay.getIntrinsicHeight());
187 iv.getOverlay().add(item.overlay);
241 public Drawable overlay; field in class:QSDetailItems.Item
/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/av/cmds/screenrecord/
H A Dscreenrecord.cpp610 // Configure optional overlay.
612 sp<Overlay> overlay; local
615 overlay = new Overlay();
616 err = overlay->start(encoderInputSurface, &bufferProducer);
622 printf("Bugreport overlay created\n");
716 if (overlay != NULL) overlay->stop();
862 " Add additional information, such as a timestamp overlay, that is helpful\n"
/frameworks/base/core/java/android/view/accessibility/
H A DCaptioningManager.java394 * in the overlay caption.
396 * @param overlay The style to apply
397 * @return A caption style with the overlay style applied
401 public CaptionStyle applyStyle(@NonNull CaptionStyle overlay) { argument
402 final int newForegroundColor = overlay.hasForegroundColor() ?
403 overlay.foregroundColor : foregroundColor;
404 final int newBackgroundColor = overlay.hasBackgroundColor() ?
405 overlay.backgroundColor : backgroundColor;
406 final int newEdgeType = overlay.hasEdgeType() ?
407 overlay
[all...]
/frameworks/base/core/java/android/gesture/
H A DGestureOverlayView.java39 * A transparent overlay for gesture input that can be placed on top of other
786 void onGesturingStarted(GestureOverlayView overlay); argument
788 void onGesturingEnded(GestureOverlayView overlay); argument
792 void onGestureStarted(GestureOverlayView overlay, MotionEvent event); argument
794 void onGesture(GestureOverlayView overlay, MotionEvent event); argument
796 void onGestureEnded(GestureOverlayView overlay, MotionEvent event); argument
798 void onGestureCancelled(GestureOverlayView overlay, MotionEvent event); argument
802 void onGesturePerformed(GestureOverlayView overlay, Gesture gesture); argument
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp166 const sp<KeyCharacterMap>& overlay) {
167 if (overlay == NULL) {
171 return overlay;
175 for (size_t i = 0; i < overlay->mKeys.size(); i++) {
176 int32_t keyCode = overlay->mKeys.keyAt(i);
177 Key* key = overlay->mKeys.valueAt(i);
187 for (size_t i = 0; i < overlay->mKeysByScanCode.size(); i++) {
188 map->mKeysByScanCode.replaceValueFor(overlay->mKeysByScanCode.keyAt(i),
189 overlay->mKeysByScanCode.valueAt(i));
192 for (size_t i = 0; i < overlay
165 combine(const sp<KeyCharacterMap>& base, const sp<KeyCharacterMap>& overlay) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java77 public void setHorizontalScrollbarOverlay(boolean overlay); argument
80 public void setVerticalScrollbarOverlay(boolean overlay); argument
H A DWebView.java642 * Specifies whether the horizontal scrollbar has overlay style.
645 * @param overlay true if horizontal scrollbar should have overlay style
648 public void setHorizontalScrollbarOverlay(boolean overlay) { argument
652 * Specifies whether the vertical scrollbar has overlay style.
655 * @param overlay true if vertical scrollbar should have overlay style
658 public void setVerticalScrollbarOverlay(boolean overlay) { argument
662 * Gets whether horizontal scrollbar has overlay style.
674 * Gets whether vertical scrollbar has overlay styl
[all...]
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp78 const char* AssetManager::OVERLAY_DIR = "/vendor/overlay";
616 // skip ahead the number of system overlay packages preloaded
2079 void AssetManager::ZipSet::addOverlay(const String8& path, const asset_path& overlay) argument
2083 zip->addOverlay(overlay);
H A DResourceTypes.cpp5992 // Runtime overlay packages provide a mapping of app resource
6579 status_t ResTable::createIdmap(const ResTable& overlay, argument
6607 // overlay packages are assumed to contain only one package group
6608 const ResTable_package* overlayPackageStruct = overlay.mPackageGroups[0]->packages[0]->package;
6637 uint32_t overlayResID = overlay.identifierForName(overlayName.string(),
6681 ALOGW("idmap: no resources in overlay package present in base package");
/frameworks/base/tools/aapt/
H A DAaptAssets.h573 inline void setOverlay(sp<AaptAssets>& overlay) { mOverlay = overlay; } argument
H A DResource.cpp601 // Replace any base level files in this category with any found from the overlay
602 // Also add any found only in the overlay.
603 sp<AaptAssets> overlay = assets->getOverlay(); local
607 while (overlay.get()) {
608 KeyedVector<String8, sp<ResourceTypeSet> >* overlayRes = overlay->getResources();
610 // get the overlay resources of the requested type
616 // non-overlay "baseset".
657 printf("found a match (" ZD ") for overlay file %s, for flavor %s\n",
666 printf("nothing matches overlay file %s, for flavor %s\n",
679 // this group doesn't exist (a file that's only in the overlay)
3122 sp<AaptAssets> overlay = assets->getOverlay(); local
[all...]
H A DResourceTable.cpp1886 bool overlay,
1903 if (overlay && !mBundle->getAutoAddOverlay() && !hasBagOrEntry(package, type, name)) {
1915 sourcePos.error("Resource does not already exist in overlay at '%s'; use <add-resource> to add.\n",
1920 sp<Entry> e = getEntry(package, type, name, sourcePos, overlay, params);
1934 if (overlay && replace) {
3894 bool overlay,
3900 if (overlay && !autoAddOverlay && mCanAddEntries.indexOf(entry) < 0) {
3901 sourcePos.error("Resource at %s appears in overlay but not"
4288 bool overlay,
4296 return t->getEntry(name, sourcePos, config, doSetIndex, overlay, mBundl
1880 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 ) argument
3890 getEntry(const String16& entry, const SourcePos& sourcePos, const ResTable_config* config, bool doSetIndex, bool overlay, bool autoAddOverlay) argument
4284 getEntry(const String16& package, const String16& type, const String16& name, const SourcePos& sourcePos, bool overlay, const ResTable_config* config, bool doSetIndex) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 8021 milliseconds