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.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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
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()
/frameworks/base/core/java/android/widget/
DTextView.java693 Drawables mDrawables;
1608 if (mDrawables == null) {
1609 mDrawables = new Drawables(context);
1612 mDrawables.mTintList = drawableTint;
1613 mDrawables.mHasTint = true;
1616 mDrawables.mBlendMode = drawableTintMode;
1617 mDrawables.mHasTintMode = true;
2246 Drawables dr = mDrawables; in setRelativeDrawablesIfNeeded()
2248 mDrawables = dr = new Drawables(getContext()); in setRelativeDrawablesIfNeeded()
2250 mDrawables.mOverride = true; in setRelativeDrawablesIfNeeded()
[all …]
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()
/frameworks/base/core/java/com/android/internal/policy/
DPhoneWindow.java232 private DrawableFeatureState[] mDrawables; field in PhoneWindow
2886 if ((ar = mDrawables) == null || ar.length <= featureId) {
2891 mDrawables = ar = nar;
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt67619 Landroid/view/ViewOverlay$OverlayViewGroup;->mDrawables:Ljava/util/ArrayList;