Home | History | Annotate | Download | only in graphics

Lines Matching defs:mBounds

81     private final Rect mBounds;
94 mBounds = new Rect();
121 float iconRatio = ((float) mBounds.width()) / mBounds.height();
135 mMatrix.setScale(mBounds.width(), mBounds.height());
136 mMatrix.postTranslate(mBounds.left, mBounds.top);
157 int y = mBounds.top;
161 int rowSizeDiff = mMaxSize - mBounds.right;
164 for (; y < mBounds.bottom; y++) {
165 index += mBounds.left;
166 for (int x = mBounds.left; x < mBounds.right; x++) {
175 float percentageDiffPixels = ((float) sum) / (mBounds.width() * mBounds.height());
298 mBounds.left = leftX;
299 mBounds.right = rightX;
301 mBounds.top = topY;
302 mBounds.bottom = bottomY;
305 outBounds.set(((float) mBounds.left) / width, ((float) mBounds.top) / height,
306 1 - ((float) mBounds.right) / width,
307 1 - ((float) mBounds.bottom) / height);
319 mAdaptiveIconBounds.set(mBounds);