HomeSort by relevance Sort by last modified time
    Searched refs:postScale (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /frameworks/base/tests/TransformTest/src/com/google/android/test/transform/
TransformTestActivity.java 107 mMatrix.postScale(mScale, mScale);
141 mMatrix.postScale(mScale, mScale);
170 mMatrix.postScale(mScale, mScale);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMatrix.java 61 public boolean postScale(float sx, float sy, float px, float py) {
  /external/skia/include/effects/
SkColorMatrix.h 37 void postScale(SkScalar rScale, SkScalar gScale, SkScalar bScale,
  /packages/apps/Gallery/src/com/android/camera/
ImageViewTouchBase.java 274 matrix.postScale(scale, scale);
315 mSuppMatrix.postScale(deltaScale, deltaScale, centerX, centerY);
374 mSuppMatrix.postScale(rate, rate, cx, cy);
388 tmp.postScale(1F / rate, 1F / rate, cx, cy);
393 mSuppMatrix.postScale(1F / rate, 1F / rate, cx, cy);
  /external/skia/gm/
imagealphathreshold.cpp 43 matrix.postScale(.8f, .8f);
bigmatrix.cpp 34 m.postScale(3000 * SK_Scalar1, 3000 * SK_Scalar1);
filterindiabox.cpp 56 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(horizScale, vertScale);
shadertext3.cpp 101 localM.postScale(1.15f, .85f);
texturedomaineffect.cpp 97 textureMatrices.back().postScale(1.5f, 0.85f);
xfermodes.cpp 91 m.postScale(SK_ScalarHalf, SK_ScalarHalf, x, y);
137 m.postScale(SK_ScalarHalf, SK_ScalarHalf, x, y);
  /external/skia/bench/
MatrixBench.cpp 156 fMatrix[i].postScale(sx, sy);
180 fMatrix.postScale(1.5f, 2.5f);
271 static SkMatrix make_scale() { SkMatrix m(make_trans()); m.postScale(1.5f, 0.5f); return m; }
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMathUtils.java 231 m.postScale(-1, 1);
233 m.postScale(1, -1);
235 m.postScale(1, -1);
236 m.postScale(-1, 1);
363 compensation.postScale(scale, scale, cx, cy);
452 m.postScale(scale, scale);
473 m.postScale(scale, scale);
MasterImage.java 607 m.postScale(scale, scale);
611 m.postScale(getScaleFactor(), getScaleFactor(),
633 m.postScale(scaleFactor, scaleFactor, mImageShowSize.x / 2.0f, mImageShowSize.y / 2.0f);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
TransformationUtils.java 296 matrix.postScale(-1, 1);
300 matrix.postScale(-1, 1);
307 matrix.postScale(-1, 1);
  /external/skia/include/utils/
SkMatrix44.h 320 void postScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
328 inline void postScale(SkMScalar scale) {
329 this->postScale(scale, scale, scale);
  /external/skia/tests/
MatrixTest.cpp 181 rot90Scale.postScale(SK_Scalar1 / 4, SK_Scalar1 / 2);
397 mat.postScale(SkIntToScalar(2), SkIntToScalar(2));
404 mat.postScale(SkIntToScalar(3), SkIntToScalar(2));
519 mat.postScale(kScale0, kScale0);
531 mat.postScale(kScale1, -kScale1);
543 mat.postScale(kScale1, kScale0);
549 mat.postScale(kScale1, kScale0);
567 mat.postScale(kScale0, kScale0);
574 mat.postScale(kScale1, kScale0);
581 mat.postScale(-kScale1, kScale0)
    [all...]
  /frameworks/base/core/java/android/transition/
PatternPathMotion.java 123 mTempMatrix.postScale(scale, scale);
  /packages/apps/Camera2/src/com/android/camera/captureintent/
PreviewTransformCalculator.java 94 transformMatrix.postScale(scale, scale, previewViewCenter.x, previewViewCenter.y);
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/renderer/
PdfManipulationService.java 137 matrix.postScale(displayScale, displayScale);
311 transform.postScale(scale, scale);
315 transform.postScale(scale, scale, mediaBox.left, mediaBox.bottom);
  /development/ndk/platforms/android-17/samples/Teapot/src/com/sample/helper/
NDKHelper.java 68 matrix.postScale(newWidth / width, newHeight / height);
97 // matrix.postScale(-1F, 1F);
  /development/ndk/platforms/android-18/samples/MoreTeapots/src/com/sample/helper/
NDKHelper.java 68 matrix.postScale(newWidth / width, newHeight / height);
97 // matrix.postScale(-1F, 1F);
  /external/skia/debugger/QT/
SkCanvasWidget.cpp 141 fUserMatrix.postScale(scale, scale, px, py);
  /frameworks/base/graphics/java/android/graphics/
Matrix.java 159 public boolean postScale(float sx, float sy, float px, float py) {
165 public boolean postScale(float sx, float sy) {
465 public boolean postScale(float sx, float sy, float px, float py) {
474 public boolean postScale(float sx, float sy) {
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
CircularBitmapDrawable.java 144 mMatrix.postScale(scale, scale);
  /packages/apps/Camera2/src/com/android/camera/widget/
FilmstripView.java 539 * Apply a scale factor (i.e. {@code postScale}) on top of current scale at
543 void postScale(float focusX, float focusY, float postScale, int viewportWidth,
549 transX -= (focusX - getX()) * (postScale - 1f);
550 transY -= (focusY - getY()) * (postScale - 1f);
551 float scaleX = mView.getScaleX() * postScale;
552 float scaleY = mView.getScaleY() * postScale;
    [all...]

Completed in 6574 milliseconds

1 2 3 4