Home
last modified time | relevance | path

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

/aosp14/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 …]
/aosp14/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 …]
/aosp14/frameworks/base/core/java/com/android/internal/graphics/drawable/
H A DBackgroundBlurDrawable.java233 private final ArraySet<BackgroundBlurDrawable> mDrawables = new ArraySet(); field in BackgroundBlurDrawable.Aggregator
264 final boolean isDrawn = mDrawables.contains(drawable); in onBlurDrawableUpdated()
268 mDrawables.add(drawable); in onBlurDrawableUpdated()
279 mDrawables.remove(drawable); in onBlurDrawableUpdated()
352 return mDrawables.size() > 0; in hasRegions()
362 mTmpBlurRegionsForFrame = new BlurRegion[mDrawables.size()]; in getBlurRegionsCopyForRT()
363 for (int i = 0; i < mDrawables.size(); i++) { in getBlurRegionsCopyForRT()
364 mTmpBlurRegionsForFrame[i] = new BlurRegion(mDrawables.valueAt(i)); in getBlurRegionsCopyForRT()
/aosp14/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()
/aosp14/frameworks/base/core/java/android/widget/
H A DTextView.java764 Drawables mDrawables;
3068 Drawables dr = mDrawables; in setCompoundDrawables()
3543 if (mDrawables == null) { in setCompoundDrawableTintList()
3559 return mDrawables != null ? mDrawables.mTintList : null; in getCompoundDrawableTintList()
3590 if (mDrawables == null) { in setCompoundDrawableTintBlendMode()
3627 return mDrawables != null ? mDrawables.mBlendMode : null; in getCompoundDrawableTintBlendMode()
3631 if (mDrawables == null) { in applyCompoundDrawableTint()
3635 if (mDrawables.mHasTint || mDrawables.mHasTintMode) { in applyCompoundDrawableTint()
6711 if (mDrawables != null) { in drawableStateChanged()
6725 if (mDrawables != null) { in drawableHotspotChanged()
[all …]
H A DEditor.java874 Drawables dr = mTextView.mDrawables; in setErrorIcon()
876 mTextView.mDrawables = dr = new Drawables(mTextView.getContext()); in setErrorIcon()
906 final Drawables dr = mTextView.mDrawables; in getErrorX()
939 final Drawables dr = mTextView.mDrawables; in getErrorY()
/aosp14/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java234 private DrawableFeatureState[] mDrawables; field in PhoneWindow
2931 if ((ar = mDrawables) == null || ar.length <= featureId) {
2936 mDrawables = ar = nar;
/aosp14/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt64296 Landroid/view/ViewOverlay$OverlayViewGroup;->mDrawables:Ljava/util/ArrayList;