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

/frameworks/base/include/camera/
H A DCameraHardwareInterface.h133 virtual status_t setOverlay(const sp<Overlay> &overlay) {return BAD_VALUE;} argument
/frameworks/base/services/surfaceflinger/tests/overlays/
H A Doverlays.cpp40 // now request an overlay
42 sp<Overlay> overlay = new Overlay(ref); local
46 * here we can use the overlay API
50 overlay->dequeueBuffer(&buffer);
53 void* address = overlay->getBufferAddress(buffer);
56 overlay->queueBuffer(buffer);
/frameworks/base/include/utils/
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/libs/ui/
H A DOverlay.cpp25 #include <hardware/overlay.h>
172 sp<IOverlay> overlay = IOverlay::asInterface(data.readStrongBinder()); local
173 if (overlay != NULL) {
183 result->mOverlayChannel = overlay;
/frameworks/base/services/surfaceflinger/
H A DLayerBuffer.cpp186 * This creates an "overlay" source for this surface
599 overlay_t* overlay = overlay_dev->createOverlay(overlay_dev, w, h, format); local
600 if (overlay == NULL) {
601 // couldn't create the overlay (no memory? no more overlays?)
606 overlay_dev->setParameter(overlay_dev, overlay,
609 mOverlay = overlay;
610 mWidth = overlay->w;
611 mHeight = overlay->h;
612 mFormat = overlay->format;
613 mWidthStride = overlay
[all...]
/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/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/tools/aapt/
H A DAaptAssets.h532 inline void setOverlay(sp<AaptAssets>& overlay) { mOverlay = overlay; } argument
H A DResource.cpp507 // Replace any base level files in this category with any found from the overlay
508 // Also add any found only in the overlay.
509 sp<AaptAssets> overlay = assets->getOverlay(); local
513 while (overlay.get()) {
514 KeyedVector<String8, sp<ResourceTypeSet> >* overlayRes = overlay->getResources();
516 // get the overlay resources of the requested type
522 // non-overlay "baseset".
563 printf("found a match (%ld) for overlay file %s, for flavor %s\n",
580 // this group doesn't exist (a file that's only in the overlay)
595 // this overlay did
[all...]
H A DResourceTable.cpp1682 bool overlay,
1703 if (overlay && !mBundle->getAutoAddOverlay() && !hasBagOrEntry(package, type, name)) {
1715 sourcePos.error("Resource does not already exist in overlay at '%s'; use <add-resource> to add.\n",
1720 sp<Entry> e = getEntry(package, type, name, sourcePos, overlay, params);
1741 if (overlay && replace) {
3401 bool overlay,
3407 if (overlay && !autoAddOverlay && mCanAddEntries.indexOf(entry) < 0) {
3408 sourcePos.error("Resource at %s appears in overlay but not"
3711 bool overlay,
3719 return t->getEntry(name, sourcePos, config, doSetIndex, overlay, mBundl
1676 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
3397 getEntry(const String16& entry, const SourcePos& sourcePos, const ResTable_config* config, bool doSetIndex, bool overlay, bool autoAddOverlay) argument
3707 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/core/java/android/webkit/
H A DWebView.java1154 * Specify whether the horizontal scrollbar has overlay style.
1155 * @param overlay TRUE if horizontal scrollbar should have overlay style.
1157 public void setHorizontalScrollbarOverlay(boolean overlay) { argument
1158 mOverlayHorizontalScrollbar = overlay;
1162 * Specify whether the vertical scrollbar has overlay style.
1163 * @param overlay TRUE if vertical scrollbar should have overlay style.
1165 public void setVerticalScrollbarOverlay(boolean overlay) { argument
1166 mOverlayVerticalScrollbar = overlay;
[all...]

Completed in 769 milliseconds