Home | History | Annotate | Download | only in relative

Lines Matching refs:mBounds

192         mBounds = new Rect(offsetX, offsetY, firstBounds.w, firstBounds.h);
194 if (mBounds.x2() > layoutBounds.x2()) {
195 mBounds.x -= mBounds.x2() - layoutBounds.x2();
197 if (mBounds.y2() > layoutBounds.y2()) {
198 mBounds.y -= mBounds.y2() - layoutBounds.y2();
200 if (mBounds.x < layoutBounds.x) {
201 mBounds.x = layoutBounds.x;
203 if (mBounds.y < layoutBounds.y) {
204 mBounds.y = layoutBounds.y;
209 Rect b = mBounds;
262 snapHorizontal(match.with, match.edge.at, mBounds);
285 snapVertical(match.with, match.edge.at, mBounds);