Searched refs:mDrawables (Results 1 – 7 of 7) sorted by relevance
136 ArrayList<Drawable> mDrawables = null; field in ViewOverlay.OverlayViewGroup153 if (mDrawables == null) { in add()154 mDrawables = new ArrayList<>(); in add()156 if (!mDrawables.contains(drawable)) { in add()158 mDrawables.add(drawable); in add()168 if (mDrawables != null) { in remove()169 mDrawables.remove(drawable); in remove()177 return super.verifyDrawable(who) || (mDrawables != null && mDrawables.contains(who)); in verifyDrawable()221 if (mDrawables != null) { in clear()222 for (Drawable drawable : mDrawables) { in clear()[all …]
694 Drawable[] mDrawables; field in DrawableContainer.DrawableContainerState796 final Drawable[] origDr = orig.mDrawables; in DrawableContainerState()797 mDrawables = new Drawable[origDr.length]; in DrawableContainerState()817 mDrawables[i] = origDr[i]; in DrawableContainerState()822 mDrawables = new Drawable[10]; in DrawableContainerState()840 if (pos >= mDrawables.length) { in addChild()848 mDrawables[pos] = dr; in addChild()871 return mDrawables.length; in getCapacity()880 mDrawables[index] = prepareDrawable(cs.newDrawable(mSourceRes)); in createAllFutures()905 return mDrawables; in getChildren()[all …]
98 private SparseArray<Drawable> mDrawables = new SparseArray<Drawable>(NUM_PASTRIES); field in DessertCaseView186 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()
663 Drawables mDrawables;1549 if (mDrawables == null) {1550 mDrawables = new Drawables(context);1553 mDrawables.mTintList = drawableTint;1554 mDrawables.mHasTint = true;1557 mDrawables.mBlendMode = drawableTintMode;1558 mDrawables.mHasTintMode = true;2169 Drawables dr = mDrawables; in setRelativeDrawablesIfNeeded()2171 mDrawables = dr = new Drawables(getContext()); in setRelativeDrawablesIfNeeded()2173 mDrawables.mOverride = true; in setRelativeDrawablesIfNeeded()[all …]
611 Drawables dr = mTextView.mDrawables; in setErrorIcon()613 mTextView.mDrawables = dr = new Drawables(mTextView.getContext()); in setErrorIcon()643 final Drawables dr = mTextView.mDrawables; in getErrorX()676 final Drawables dr = mTextView.mDrawables; in getErrorY()
206 private DrawableFeatureState[] mDrawables; field in PhoneWindow2853 if ((ar = mDrawables) == null || ar.length <= featureId) {2858 mDrawables = ar = nar;
78725 Landroid/view/ViewOverlay$OverlayViewGroup;->mDrawables:Ljava/util/ArrayList;