Home
last modified time | relevance | path

Searched refs:mDrawables (Results 1 – 10 of 10) sorted by relevance

/aosp12/frameworks/base/core/java/android/view/
H A DViewOverlay.java137 ArrayList<Drawable> mDrawables = null; field in ViewOverlay.OverlayViewGroup
154 if (mDrawables == null) { in add()
155 mDrawables = new ArrayList<>(); in add()
159 mDrawables.add(drawable); in add()
169 if (mDrawables != null) { in remove()
170 mDrawables.remove(drawable); in remove()
178 return super.verifyDrawable(who) || (mDrawables != null && mDrawables.contains(who)); in verifyDrawable()
222 if (mDrawables != null) { in clear()
226 mDrawables.clear(); in clear()
232 (mDrawables == null || mDrawables.size() == 0)) { in isEmpty()
[all …]
/aosp12/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawableContainer.java693 Drawable[] mDrawables; field in DrawableContainer.DrawableContainerState
821 mDrawables = new Drawable[10]; in DrawableContainerState()
839 if (pos >= mDrawables.length) { in addChild()
847 mDrawables[pos] = dr; in addChild()
870 return mDrawables.length; in getCapacity()
904 return mDrawables; in getChildren()
919 mDrawables[index] = prepared; in getChild()
937 final Drawable[] drawables = mDrawables; in setLayoutDirection()
997 final Drawable[] drawables = mDrawables; in canApplyTheme()
1019 final Drawable[] drawables = mDrawables; in mutate()
[all …]
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DImageFilterBorder.java35 private HashMap<Integer, Drawable> mDrawables = new HashMap<Integer, Drawable>(); field in ImageFilterBorder
51 mDrawables.clear(); in freeResources()
79 mDrawables.clear(); in setResources()
84 Drawable drawable = mDrawables.get(rsc); in getDrawable()
87 mDrawables.put(rsc, drawable); in getDrawable()
/aosp12/frameworks/base/core/java/com/android/internal/graphics/drawable/
H A DBackgroundBlurDrawable.java232 private final ArraySet<BackgroundBlurDrawable> mDrawables = new ArraySet(); field in BackgroundBlurDrawable.Aggregator
260 final boolean isDrawn = mDrawables.contains(drawable); in onBlurDrawableUpdated()
264 mDrawables.add(drawable); in onBlurDrawableUpdated()
275 mDrawables.remove(drawable); in onBlurDrawableUpdated()
309 return mDrawables.size() > 0; in hasRegions()
319 mTmpBlurRegionsForFrame = new BlurRegion[mDrawables.size()]; in getBlurRegionsCopyForRT()
320 for (int i = 0; i < mDrawables.size(); i++) { in getBlurRegionsCopyForRT()
321 mTmpBlurRegionsForFrame[i] = new BlurRegion(mDrawables.valueAt(i)); in getBlurRegionsCopyForRT()
/aosp12/packages/apps/Settings/src/com/android/settings/notification/zen/
H A DZenModeConversationsImagePreferenceController.java125 private List<Drawable> mDrawables = new ArrayList<>(); in loadConversations() local
128 mDrawables.clear(); in loadConversations()
147 mDrawables.add(drawable); in loadConversations()
162 mConversationDrawables.addAll(mDrawables); in loadConversations()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java98 private SparseArray<Drawable> mDrawables = new SparseArray<Drawable>(NUM_PASTRIES); field in DessertCaseView
186 mDrawables.append(resid, d); in DessertCaseView()
305 d = mDrawables.get(pick(XXRARE_PASTRIES)); in fillFreeList()
307 d = mDrawables.get(pick(XRARE_PASTRIES)); in fillFreeList()
309 d = mDrawables.get(pick(RARE_PASTRIES)); in fillFreeList()
311 d = mDrawables.get(pick(PASTRIES)); in fillFreeList()
/aosp12/frameworks/base/core/java/android/widget/
H A DTextView.java693 Drawables mDrawables;
2895 Drawables dr = mDrawables; in setCompoundDrawables()
3370 if (mDrawables == null) { in setCompoundDrawableTintList()
3386 return mDrawables != null ? mDrawables.mTintList : null; in getCompoundDrawableTintList()
3417 if (mDrawables == null) { in setCompoundDrawableTintBlendMode()
3454 return mDrawables != null ? mDrawables.mBlendMode : null; in getCompoundDrawableTintBlendMode()
3458 if (mDrawables == null) { in applyCompoundDrawableTint()
3462 if (mDrawables.mHasTint || mDrawables.mHasTintMode) { in applyCompoundDrawableTint()
5941 if (mDrawables != null) { in drawableStateChanged()
5955 if (mDrawables != null) { in drawableHotspotChanged()
[all …]
H A DEditor.java814 Drawables dr = mTextView.mDrawables; in setErrorIcon()
816 mTextView.mDrawables = dr = new Drawables(mTextView.getContext()); in setErrorIcon()
846 final Drawables dr = mTextView.mDrawables; in getErrorX()
879 final Drawables dr = mTextView.mDrawables; in getErrorY()
/aosp12/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java232 private DrawableFeatureState[] mDrawables; field in PhoneWindow
2886 if ((ar = mDrawables) == null || ar.length <= featureId) {
2891 mDrawables = ar = nar;
/aosp12/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt67619 Landroid/view/ViewOverlay$OverlayViewGroup;->mDrawables:Ljava/util/ArrayList;