Home | History | Annotate | Download | only in wm

Lines Matching refs:scaleW

614             float scaleW = mTmpRect.width() / (float) appWidth;
616 Animation scale = new ScaleAnimation(scaleW, 1, scaleH, 1,
617 computePivot(mTmpRect.left, scaleW),
921 float scaleW = appWidth / thumbWidth;
935 toX = mTmpRect.width() / 2 * (scaleW - 1f) + appRect.left;
936 toY = appRect.height() / 2 * (1 - 1 / scaleW) + appRect.top;
938 pivotY = appRect.height() / 2 / scaleW;
951 Animation scale = new ScaleAnimation(1f, scaleW, 1f, scaleW, pivotX, pivotY);
970 mTmpToClipRect.right = (int) (mTmpToClipRect.right / scaleW);
971 mTmpToClipRect.bottom = (int) (mTmpToClipRect.bottom / scaleW);
974 mTmpToClipRect.inset((int) (-contentInsets.left * scaleW),
975 (int) (-contentInsets.top * scaleW),
976 (int) (-contentInsets.right * scaleW),
977 (int) (-contentInsets.bottom * scaleW));
993 Animation scale = new ScaleAnimation(scaleW, 1f, scaleW, 1f, pivotX, pivotY);
1263 float scaleW = appWidth / thumbWidth;
1265 Animation scale = new ScaleAnimation(1, scaleW, 1, scaleH,
1266 computePivot(mTmpRect.left, 1 / scaleW),
1280 float scaleW = appWidth / thumbWidth;
1282 a = new ScaleAnimation(scaleW, 1, scaleH, 1,
1283 computePivot(mTmpRect.left, 1 / scaleW),
1309 float scaleW = thumbWidth / appWidth;
1311 a = new ScaleAnimation(scaleW, 1, scaleH, 1,
1312 computePivot(mTmpRect.left, scaleW),
1337 float scaleW = thumbWidth / appWidth;
1339 Animation scale = new ScaleAnimation(1, scaleW, 1, scaleH,
1340 computePivot(mTmpRect.left, scaleW),