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

/frameworks/base/include/ui/
H A DCameraHardwareInterface.h103 virtual status_t setOverlay(const sp<Overlay> &overlay) {return BAD_VALUE;} argument
/frameworks/base/libs/surfaceflinger/tests/overlays/
H A Doverlays.cpp39 // now request an overlay
41 sp<Overlay> overlay = new Overlay(ref); local
45 * here we can use the overlay API
49 overlay->dequeueBuffer(&buffer);
52 void* address = overlay->getBufferAddress(buffer);
55 overlay->queueBuffer(buffer);
/frameworks/base/libs/ui/
H A DOverlay.cpp25 #include <hardware/overlay.h>
139 sp<IOverlay> overlay = IOverlay::asInterface(data.readStrongBinder()); local
140 if (overlay != NULL) {
150 result->mOverlayChannel = overlay;
/frameworks/base/libs/surfaceflinger/
H A DLayerBuffer.cpp162 * This creates an "overlay" source for this surface
567 overlay_t* overlay = overlay_dev->createOverlay(overlay_dev, w, h, format); local
568 if (overlay == NULL) {
569 // couldn't create the overlay (no memory? no more overlays?)
574 overlay_dev->setParameter(overlay_dev, overlay,
577 mOverlay = overlay;
578 mWidth = overlay->w;
579 mHeight = overlay->h;
580 mFormat = overlay->format;
581 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.java37 * A transparent overlay for gesture input that can be placed on top of other
775 void onGesturingStarted(GestureOverlayView overlay); argument
777 void onGesturingEnded(GestureOverlayView overlay); argument
781 void onGestureStarted(GestureOverlayView overlay, MotionEvent event); argument
783 void onGesture(GestureOverlayView overlay, MotionEvent event); argument
785 void onGestureEnded(GestureOverlayView overlay, MotionEvent event); argument
787 void onGestureCancelled(GestureOverlayView overlay, MotionEvent event); argument
791 void onGesturePerformed(GestureOverlayView overlay, Gesture gesture); argument
/frameworks/base/tools/aapt/
H A DAaptAssets.h503 inline void setOverlay(sp<AaptAssets>& overlay) { mOverlay = overlay; } argument
H A DResource.cpp440 // Replace any base level files in this category with any found from the overlay
441 // Also add any found only in the overlay.
442 sp<AaptAssets> overlay = assets->getOverlay(); local
446 while (overlay.get()) {
447 KeyedVector<String8, sp<ResourceTypeSet> >* overlayRes = overlay->getResources();
449 // get the overlay resources of the requested type
455 // non-overlay "baseset".
484 // this group doesn't exist (a file that's only in the overlay)
486 "*** Resource file '%s' exists only in an overlay\n",
491 // this overlay did
[all...]
H A DResourceTable.cpp1538 bool overlay,
1559 if (overlay && !hasBagOrEntry(package, type, name)) {
1560 sourcePos.error("Can't add new bags in an overlay. See '%s'\n",
1564 sp<Entry> e = getEntry(package, type, name, sourcePos, overlay, params);
1585 if (overlay && replace) {
3222 bool overlay)
3227 if (overlay == true) {
3228 sourcePos.error("Resource %s appears in overlay but not"
3530 bool overlay,
3538 return t->getEntry(name, sourcePos, config, doSetIndex, overlay);
1532 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
3218 getEntry(const String16& entry, const SourcePos& sourcePos, const ResTable_config* config, bool doSetIndex, bool overlay) argument
3526 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.java780 * Specify whether the horizontal scrollbar has overlay style.
781 * @param overlay TRUE if horizontal scrollbar should have overlay style.
783 public void setHorizontalScrollbarOverlay(boolean overlay) { argument
784 mOverlayHorizontalScrollbar = overlay;
788 * Specify whether the vertical scrollbar has overlay style.
789 * @param overlay TRUE if vertical scrollbar should have overlay style.
791 public void setVerticalScrollbarOverlay(boolean overlay) { argument
792 mOverlayVerticalScrollbar = overlay;
[all...]

Completed in 443 milliseconds