Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DViewOverlay.java137 ArrayList<Drawable> mDrawables = null; field in ViewOverlay.OverlayViewGroup
154 if (mDrawables == null) { in add()
155 mDrawables = new ArrayList<>(); in add()
157 if (!mDrawables.contains(drawable)) { 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()
223 for (Drawable drawable : mDrawables) { in clear()
[all …]
/frameworks/base/graphics/java/android/graphics/drawable/
DDrawableContainer.java693 Drawable[] mDrawables; field in DrawableContainer.DrawableContainerState
795 final Drawable[] origDr = orig.mDrawables; in DrawableContainerState()
796 mDrawables = new Drawable[origDr.length]; in DrawableContainerState()
816 mDrawables[i] = origDr[i]; in 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()
879 mDrawables[index] = prepareDrawable(cs.newDrawable(mSourceRes)); in createAllFutures()
904 return mDrawables; in getChildren()
[all …]
/frameworks/base/core/java/com/android/internal/graphics/drawable/
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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDessertCaseView.java100 private SparseArray<Drawable> mDrawables = new SparseArray<Drawable>(NUM_PASTRIES); field in DessertCaseView
188 mDrawables.append(resid, d); in DessertCaseView()
307 d = mDrawables.get(pick(XXRARE_PASTRIES)); in fillFreeList()
309 d = mDrawables.get(pick(XRARE_PASTRIES)); in fillFreeList()
311 d = mDrawables.get(pick(RARE_PASTRIES)); in fillFreeList()
313 d = mDrawables.get(pick(PASTRIES)); in fillFreeList()
/frameworks/base/core/java/android/widget/
DTextView.java782 Drawables mDrawables;
1794 if (mDrawables == null) {
1795 mDrawables = new Drawables(context);
1798 mDrawables.mTintList = drawableTint;
1799 mDrawables.mHasTint = true;
1802 mDrawables.mBlendMode = drawableTintMode;
1803 mDrawables.mHasTintMode = true;
2445 Drawables dr = mDrawables; in setRelativeDrawablesIfNeeded()
2447 mDrawables = dr = new Drawables(getContext()); in setRelativeDrawablesIfNeeded()
2449 mDrawables.mOverride = true; in setRelativeDrawablesIfNeeded()
[all …]
DEditor.java877 Drawables dr = mTextView.mDrawables; in setErrorIcon()
879 mTextView.mDrawables = dr = new Drawables(mTextView.getContext()); in setErrorIcon()
909 final Drawables dr = mTextView.mDrawables; in getErrorX()
942 final Drawables dr = mTextView.mDrawables; in getErrorY()
/frameworks/base/core/java/com/android/internal/policy/
DPhoneWindow.java270 private DrawableFeatureState[] mDrawables; field in PhoneWindow
3043 if ((ar = mDrawables) == null || ar.length <= featureId) {
3048 mDrawables = ar = nar;
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt63653 Landroid/view/ViewOverlay$OverlayViewGroup;->mDrawables:Ljava/util/ArrayList;