Home | History | Annotate | Download | only in graphics

Lines Matching defs:mBounds

82     private final Rect mBounds;
101 mBounds = new Rect();
137 float iconRatio = ((float) mBounds.width()) / mBounds.height();
162 mMatrix.setScale(mBounds.width(), mBounds.height());
163 mMatrix.postTranslate(mBounds.left, mBounds.top);
196 int w = mBounds.width();
197 int h = mBounds.height();
200 mBounds.left, mBounds.top,
208 float percentageDiffPixels = ((float) sum) / (mBounds.width() * mBounds.height());
213 + "=" + sum + "/" + mBounds.width() * mBounds.height());
332 mBounds.left = leftX;
333 mBounds.right = rightX;
335 mBounds.top = topY;
336 mBounds.bottom = bottomY;
339 outBounds.set(((float) mBounds.left) / width, ((float) mBounds.top),
340 1 - ((float) mBounds.right) / width,
341 1 - ((float) mBounds.bottom) / height);
353 mAdaptiveIconBounds.set(mBounds);