Home
last modified time | relevance | path

Searched refs:overlay (Results 1 – 25 of 72) sorted by relevance

123

/frameworks/base/core/java/android/view/accessibility/
DCaptioningManager.java370 public CaptionStyle applyStyle(@NonNull CaptionStyle overlay) { in applyStyle() argument
371 final int newForegroundColor = overlay.hasForegroundColor() ? in applyStyle()
372 overlay.foregroundColor : foregroundColor; in applyStyle()
373 final int newBackgroundColor = overlay.hasBackgroundColor() ? in applyStyle()
374 overlay.backgroundColor : backgroundColor; in applyStyle()
375 final int newEdgeType = overlay.hasEdgeType() ? in applyStyle()
376 overlay.edgeType : edgeType; in applyStyle()
377 final int newEdgeColor = overlay.hasEdgeColor() ? in applyStyle()
378 overlay.edgeColor : edgeColor; in applyStyle()
379 final int newWindowColor = overlay.hasWindowColor() ? in applyStyle()
[all …]
/frameworks/opt/photoviewer/
DAndroid.mk37 LOCAL_AAPT_FLAGS := --auto-add-overlay
58 LOCAL_AAPT_FLAGS := --auto-add-overlay
76 LOCAL_AAPT_FLAGS := --auto-add-overlay
92 LOCAL_AAPT_FLAGS := --auto-add-overlay
/frameworks/base/libs/androidfw/tests/data/overlay/
Dbuild5 mv resources.arsc overlay.arsc && \
6 xxd -i overlay.arsc > overlay_arsc.h
/frameworks/base/core/java/android/transition/
DCrossfade.java187 ViewOverlay overlay = useParentOverlay ? in createAnimator() local
190 overlay.add(endDrawable); in createAnimator()
192 overlay.add(startDrawable); in createAnimator()
225 ViewOverlay overlay = useParentOverlay ? in createAnimator()
227 overlay.remove(startDrawable); in createAnimator()
229 overlay.remove(endDrawable); in createAnimator()
/frameworks/base/cmds/idmap/
Dscan.cpp43 const Overlay& overlay = overlayVector[i]; in writePackagesList() local
44 fprintf(fout, "%s %s\n", overlay.apk_path.string(), overlay.idmap_path.string()); in writePackagesList()
234 Overlay overlay(String8(overlay_apk_path), idmap_path, priority); in idmap_scan() local
235 overlayVector.add(overlay); in idmap_scan()
/frameworks/base/tools/obbtool/
DMain.cpp54 , overlay(false) in PackageInfo()
62 bool overlay; member in PackageInfo
101 obb->setOverlay(info->overlay); in doAdd()
216 package_info.overlay = true; in main()
/frameworks/base/docs/html/design/patterns/
Dindex.jd11 #text-overlay {
20 <div id="text-overlay">
/frameworks/base/docs/html/design/building-blocks/
Dindex.jd11 #text-overlay {
20 <div id="text-overlay">
/frameworks/base/docs/html/design/style/
Dindex.jd11 #text-overlay {
20 <div id="text-overlay">
/frameworks/base/docs/html/design/
Ddevices.jd13 #text-overlay {
25 <div id="text-overlay">
Dindex.jd14 #text-overlay {
27 <div id="text-overlay">
/frameworks/opt/photoviewer/sample/
DAndroid.mk35 LOCAL_AAPT_FLAGS := --auto-add-overlay
59 LOCAL_AAPT_FLAGS := --auto-add-overlay
/frameworks/base/include/androidfw/
DObbFile.h98 void setOverlay(bool overlay) { in setOverlay() argument
99 if (overlay) { in setOverlay()
/frameworks/base/docs/html/training/basics/actionbar/
Doverlaying.jd39 <img src="{@docRoot}images/training/basics/actionbar-overlay@2x.png" width="280" alt="" />
40 <p class="img-caption"><strong>Figure 1.</strong> Gallery's action bar in overlay mode.</p>
43 <p>To avoid resizing your layout when the action bar hides and shows, you can enable <em>overlay
44 mode</em> for the action bar. When in overlay mode, your activity layout uses all the space
58 <p>To enable overlay mode for the action bar, you need to create a custom theme that
113 <p>When the action bar is in overlay mode, it might obscure some of your layout that should
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/
DWebView.java68 public void setHorizontalScrollbarOverlay(boolean overlay) { in setHorizontalScrollbarOverlay() argument
71 public void setVerticalScrollbarOverlay(boolean overlay) { in setVerticalScrollbarOverlay() argument
/frameworks/base/core/tests/overlaytests/OverlayAppFirst/res/raw/
Dlorem_ipsum.txt1 Lorem ipsum: single overlay.
/frameworks/base/core/java/android/gesture/
DGestureOverlayView.java783 void onGesturingStarted(GestureOverlayView overlay); in onGesturingStarted() argument
785 void onGesturingEnded(GestureOverlayView overlay); in onGesturingEnded() argument
789 void onGestureStarted(GestureOverlayView overlay, MotionEvent event); in onGestureStarted() argument
791 void onGesture(GestureOverlayView overlay, MotionEvent event); in onGesture() argument
793 void onGestureEnded(GestureOverlayView overlay, MotionEvent event); in onGestureEnded() argument
795 void onGestureCancelled(GestureOverlayView overlay, MotionEvent event); in onGestureCancelled() argument
799 void onGesturePerformed(GestureOverlayView overlay, Gesture gesture); in onGesturePerformed() argument
/frameworks/base/services/core/java/com/android/server/display/
DOverlayDisplayAdapter.java82 for (OverlayDisplayHandle overlay : mOverlays) { in dumpLocked()
83 overlay.dumpLocked(pw); in dumpLocked()
128 for (OverlayDisplayHandle overlay : mOverlays) { in updateOverlayDisplayDevicesLocked()
129 overlay.dismissLocked(); in updateOverlayDisplayDevicesLocked()
/frameworks/opt/setupwizard/navigationbar/
Dcommon.mk7 LOCAL_AAPT_FLAGS += --auto-add-overlay --extra-packages com.android.setupwizard.navigationbar
/frameworks/native/libs/input/
DKeyCharacterMap.cpp166 const sp<KeyCharacterMap>& overlay) { in combine() argument
167 if (overlay == NULL) { in combine()
171 return overlay; in combine()
175 for (size_t i = 0; i < overlay->mKeys.size(); i++) { in combine()
176 int32_t keyCode = overlay->mKeys.keyAt(i); in combine()
177 Key* key = overlay->mKeys.valueAt(i); in combine()
187 for (size_t i = 0; i < overlay->mKeysByScanCode.size(); i++) { in combine()
188 map->mKeysByScanCode.replaceValueFor(overlay->mKeysByScanCode.keyAt(i), in combine()
189 overlay->mKeysByScanCode.valueAt(i)); in combine()
192 for (size_t i = 0; i < overlay->mKeysByUsageCode.size(); i++) { in combine()
[all …]
/frameworks/base/core/tests/overlaytests/OverlayTestOverlay/
DAndroid.mk10 LOCAL_PACKAGE_NAME := com.android.overlaytest.overlay
/frameworks/base/core/java/android/view/
DGhostView.java104 ViewGroupOverlay overlay = viewGroup.getOverlay(); in addGhost() local
105 ViewOverlay.OverlayViewGroup overlayViewGroup = overlay.mOverlayViewGroup; in addGhost()
130 int firstGhost = moveGhostViewsToTop(overlay.mOverlayViewGroup, tempViews); in addGhost()
131 insertIntoOverlay(overlay.mOverlayViewGroup, parent, ghostView, tempViews, firstGhost); in addGhost()
/frameworks/opt/chips/tests/
DAndroid.mk25 LOCAL_AAPT_FLAGS := --auto-add-overlay
/frameworks/base/tests/MusicServiceDemo/
DAndroid.mk33 --auto-add-overlay \
/frameworks/base/tests/MusicBrowserDemo/
DAndroid.mk33 --auto-add-overlay \

123