Home | History | Annotate | Download | only in view

Lines Matching refs:mDrawables

127         ArrayList<Drawable> mDrawables = null;
141 if (mDrawables == null) {
143 mDrawables = new ArrayList<Drawable>();
145 if (!mDrawables.contains(drawable)) {
147 mDrawables.add(drawable);
154 if (mDrawables != null) {
155 mDrawables.remove(drawable);
163 return super.verifyDrawable(who) || (mDrawables != null && mDrawables.contains(who));
199 if (mDrawables != null) {
200 mDrawables.clear();
206 (mDrawables == null || mDrawables.size() == 0)) {
220 final int numDrawables = (mDrawables == null) ? 0 : mDrawables.size();
222 mDrawables.get(i).draw(canvas);