Home | History | Annotate | Download | only in graph

Lines Matching refs:mFrame

90     private final RectF mFrame = new RectF();
319 mFrame.set(left, top, width + left, height + top);
320 mFrame.offset(px, 0);
324 mFrame.left + Math.round(width * 0.28f),
325 mFrame.top,
326 mFrame.right - Math.round(width * 0.28f),
327 mFrame.top + buttonHeight);
330 mFrame.top += buttonHeight;
342 : (mFrame.top + (mFrame.height() * (1f - drawFrac)));
347 final float radius = getRadiusRatio() * (mFrame.height() + buttonHeight);
349 mShapePath.addRoundRect(mFrame, radius, radius, Direction.CW);
351 mOutlinePath.addRoundRect(mFrame, radius, radius, Direction.CW);
359 final float bl = mFrame.left + mFrame.width() / 4f + 1;
360 final float bt = mFrame.top + mFrame.height() / 6f;
361 final float br = mFrame.right - mFrame.width() / 4f + 1;
362 final float bb = mFrame.bottom - mFrame.height() / 10f;
391 final float pw = mFrame.width() * 2 / 3;
392 final float pl = mFrame.left + (mFrame.width() - pw) / 2;
393 final float pt = mFrame.top + (mFrame.height() - pw) / 2;
394 final float pr = mFrame.right - (mFrame.width() - pw) / 2;
395 final float pb = mFrame.bottom - (mFrame.height() - pw) / 2;
446 mFrame.top = levelTop;
448 c.clipRect(mFrame);