Searched refs:m11 (Results 1 - 19 of 19) sorted by relevance

/external/webkit/WebCore/platform/graphics/qt/
H A DTransformationMatrixQt.cpp37 return QTransform(m11(), m12(), m14(), m21(), m22(), m24(), m41(), m42(), m44());
H A DGraphicsContextQt.cpp285 return AffineTransform(matrix.m11(), matrix.m12(), matrix.m21(),
/external/webkit/WebCore/css/
H A DWebKitCSSMatrix.idl32 attribute double a; // alias for m11
39 attribute double m11;
H A DWebKitCSSMatrix.h73 double m11() const { return m_matrix.m11(); } function in class:WebCore::WebKitCSSMatrix
H A DWebKitCSSMatrix.cpp180 m_matrix.m11(), m_matrix.m12(), m_matrix.m13(), m_matrix.m14(),
H A DCSSComputedStyleDeclaration.cpp441 transformVal->append(CSSPrimitiveValue::create(transform.m11(), CSSPrimitiveValue::CSS_NUMBER));
/external/webkit/WebCore/platform/graphics/openvg/
H A DVGUtils.cpp43 m_data[0] = matrix.m11();
/external/skia/tests/
H A DMatrixTest.cpp84 SkScalar m00, m01, m10, m11; member in struct:__anon5753
113 m.set(SkMatrix::kMScaleY, gRectStaysRectSamples[i].m11);
/external/webkit/WebCore/html/canvas/
H A DCanvasRenderingContext2D.idl41 void transform(in float m11, in float m12, in float m21, in float m22, in float dx, in float dy);
42 void setTransform(in float m11, in float m12, in float m21, in float m22, in float dx, in float dy);
H A DCanvasRenderingContext2D.h108 void transform(float m11, float m12, float m21, float m22, float dx, float dy);
109 void setTransform(float m11, float m12, float m21, float m22, float dx, float dy);
H A DCanvasRenderingContext2D.cpp418 void CanvasRenderingContext2D::transform(float m11, float m12, float m21, float m22, float dx, float dy) argument
426 if (!isfinite(m11) | !isfinite(m21) | !isfinite(dx) |
430 AffineTransform transform(m11, m12, m21, m22, dx, dy);
442 void CanvasRenderingContext2D::setTransform(float m11, float m12, float m21, float m22, float dx, float dy) argument
448 if (!isfinite(m11) | !isfinite(m21) | !isfinite(dx) |
461 transform(m11, m12, m21, m22, dx, dy);
/external/webkit/WebCore/platform/graphics/transforms/
H A DTransformationMatrix.h72 TransformationMatrix(double m11, double m12, double m13, double m14, argument
77 setMatrix(m11, m12, m13, m14, m21, m22, m23, m24, m31, m32, m33, m34, m41, m42, m43, m44);
88 void setMatrix(double m11, double m12, double m13, double m14, argument
93 m_matrix[0][0] = m11; m_matrix[0][1] = m12; m_matrix[0][2] = m13; m_matrix[0][3] = m14;
156 double m11() const { return m_matrix[0][0]; } function in class:WebCore::TransformationMatrix
H A DTransformationMatrix.cpp537 double outX = x * m11() + y * m21() + z * m31() + m41();
/external/webkit/WebCore/platform/graphics/win/
H A DWKCACFLayer.h70 t.m11 = value.m11();
H A DGraphicsLayerCACF.cpp49 toT3D.m11 = narrowPrecisionToFloat(t.m11());
70 fromT3D.m11,
H A DWKCACFLayer.cpp550 transform.m11, transform.m12, transform.m13, transform.m14,
/external/webkit/WebCore/platform/graphics/
H A DGraphicsLayer.cpp448 ts << "[" << m_transform.m11() << " " << m_transform.m12() << " " << m_transform.m13() << " " << m_transform.m14() << "] ";
460 ts << "[" << m_childrenTransform.m11() << " " << m_childrenTransform.m12() << " " << m_childrenTransform.m13() << " " << m_childrenTransform.m14() << "] ";
/external/skia/src/core/
H A DSkMatrix.cpp88 int m11 = SkScalarAs2sCompliment(fMat[SkMatrix::kMScaleY]); local
94 if ((m00 - kScalar1Int) | (m11 - kScalar1Int)) {
103 m11 = m11 != 0;
107 int dp0 = (m00 | m11) ^ 1; // true if both are 0
108 int dp1 = m00 & m11; // true if both are 1
/external/webkit/WebCore/platform/graphics/mac/
H A DGraphicsLayerCA.mm131 toT3D.m11 = narrowPrecisionToFloat(t.m11());

Completed in 165 milliseconds