Searched defs:scaleY (Results 1 - 17 of 17) sorted by relevance

/external/proguard/src/proguard/gui/splash/
H A DImageSprite.java36 private final VariableDouble scaleY; field in class:ImageSprite
45 * @param scaleY the variable y-scale of the image.
51 VariableDouble scaleY)
57 this.scaleY = scaleY;
69 double scale_y = scaleY.getDouble(time);
47 ImageSprite(Image image, VariableInt x, VariableInt y, VariableDouble scaleX, VariableDouble scaleY) argument
/external/skia/src/animator/
H A DSkDrawMatrix.h61 void scale(SkScalar scaleX, SkScalar scaleY, SkPoint& center) { argument
62 fMatrix.preScale(scaleX, scaleY, center.fX, center.fY);
/external/webkit/WebCore/css/
H A DWebKitCSSMatrix.cpp128 PassRefPtr<WebKitCSSMatrix> WebKitCSSMatrix::scale(double scaleX, double scaleY, double scaleZ) const argument
132 if (isnan(scaleY))
133 scaleY = scaleX;
136 return WebKitCSSMatrix::create(TransformationMatrix(m_matrix).scale3d(scaleX, scaleY, scaleZ));
/external/webkit/WebCore/svg/
H A DSVGTransformDistance.cpp83 float scaleY = toSVGTransform.scale().height() - fromSVGTransform.scale().height(); local
84 m_transform.scaleNonUniform(scaleX, scaleY);
192 float scaleY = absoluteValue ? fabsf(transform.scale().height()) : transform.scale().height(); local
193 m_transform.scaleNonUniform(scaleX, scaleY);
/external/skia/src/core/
H A DSkPicture.cpp93 SkScalar scaleY = matrix->getScaleY(); local
101 SkASSERT(scaleY == 0 || skewY == 0);
H A DSkPictureFlat.cpp50 SkScalar scaleY = matrix->getScaleY(); local
51 if (scaleY != defaultMatrix.getScaleY())
53 "scaleY:%g ", SkScalarToFloat(scaleY));
H A DSkPicturePlayback.cpp957 SkScalar scaleY = matrix.getScaleY(); local
958 if (scaleY != defaultMatrix.getScaleY())
960 "{kScaleY, %g}, ", SkScalarToFloat(scaleY));
/external/webkit/WebCore/platform/graphics/
H A DImage.cpp91 float scaleX = 1.0f, scaleY = 1.0f; local
96 scaleY = dstRect.height() / srcRect.height();
99 scaleX = scaleY;
101 scaleY = scaleX;
103 return FloatSize(scaleX, scaleY);
/external/webkit/WebCore/platform/graphics/wx/
H A DImageWx.cpp124 float scaleY = src.height() / dst.height(); local
130 adjustedDestRect.setLocation(FloatPoint(dst.x() - src.x() / scaleX, dst.y() - src.y() / scaleY));
131 adjustedDestRect.setSize(FloatSize(selfSize.width() / scaleX, selfSize.height() / scaleY));
/external/webkit/WebCore/svg/graphics/
H A DSVGResourceFilter.h69 float scaleY() const { return m_scaleY; } function in class:WebCore::SVGResourceFilter
/external/webkit/WebCore/svg/graphics/filters/
H A DSVGFEDisplacementMap.cpp108 float scaleY = m_scale / 255.f * filter->filterResolution().height(); local
117 int srcY = y + static_cast<int>(scaleY * srcPixelArrayB->get(dstIndex + m_yChannelSelector - 1) + scaleAdjustmentY);
/external/webkit/WebCore/platform/graphics/android/
H A DImageAndroid.cpp277 float scaleY = 1; local
280 scaleY = (float)image->origHeight() / origBitmap.height();
281 // SkDebugf("----- subsampled %g %g\n", scaleX, scaleY);
282 round_scaled(&srcR, srcRect, 1 / scaleX, 1 / scaleY);
310 matrix.preScale(SkFloatToScalar(scaleX), SkFloatToScalar(scaleY));
/external/webkit/WebCore/platform/graphics/cairo/
H A DImageCairo.cpp131 float scaleY = srcRect.height() / dstRect.height(); local
132 cairo_matrix_t matrix = { scaleX, 0, 0, scaleY, srcRect.x(), srcRect.y() };
/external/webkit/WebCore/platform/graphics/transforms/
H A DTransformationMatrix.h252 double scaleX, scaleY, scaleZ; member in struct:WebCore::TransformationMatrix::__anon6634
/external/skia/src/ports/
H A DSkFontHost_FreeType.cpp914 SkFixed scaleY = fScaleY; local
956 SkFixed y = SkMulDiv(scaleY, ys[i], upem);
/external/webkit/WebCore/platform/graphics/wince/
H A DGraphicsContextWince.cpp1626 double scaleY = m_data->m_transform.d(); local
1628 int height = fontData->platformData().size() * scaleY;
1639 ? fontData->platformData().getScaledFontHandle(height, scaleX == scaleY ? 0 : width)
/external/proguard/lib/
H A Dproguardgui.jarMETA-INF/ META-INF/MANIFEST.MF proguard/gui/SwingUtil.class SwingUtil.java package proguard ...

Completed in 190 milliseconds