Home | History | Annotate | Download | only in view

Lines Matching refs:mDrawables

127         ArrayList<Drawable> mDrawables = null;
138 if (mDrawables == null) {
140 mDrawables = new ArrayList<Drawable>();
142 if (!mDrawables.contains(drawable)) {
144 mDrawables.add(drawable);
151 if (mDrawables != null) {
152 mDrawables.remove(drawable);
160 return super.verifyDrawable(who) || (mDrawables != null && mDrawables.contains(who));
196 if (mDrawables != null) {
197 mDrawables.clear();
203 (mDrawables == null || mDrawables.size() == 0)) {
217 final int numDrawables = (mDrawables == null) ? 0 : mDrawables.size();
219 mDrawables.get(i).draw(canvas);