Home | History | Annotate | Download | only in qs

Lines Matching refs:mIcon

48     private final View mIcon;
81 mIcon = createIcon();
82 addView(mIcon);
233 mIcon.measure(MeasureSpec.makeMeasureSpec(w, MeasureSpec.AT_MOST), iconSpec);
258 final int iconLeft = (w - mIcon.getMeasuredWidth()) / 2;
259 layout(mIcon, iconLeft, top);
264 top = mIcon.getBottom();
276 final int cy = mDual ? mIcon.getTop() + mIcon.getHeight() / 2 : height / 2;
277 final int rad = (int)(mIcon.getHeight() * 1.25f);
286 if (mIcon instanceof ImageView) {
287 ImageView iv = (ImageView) mIcon;