HomeSort by relevance Sort by last modified time
    Searched defs:m_matrix (Results 1 - 4 of 4) sorted by null

  /external/webkit/WebCore/platform/graphics/transforms/
Matrix3DTransformOperation.h 41 virtual bool isIdentity() const { return m_matrix.isIdentity(); }
51 return m_matrix == m->m_matrix;
56 transform.multLeft(TransformationMatrix(m_matrix));
64 m_matrix = mat;
67 TransformationMatrix m_matrix; member in class:WebCore::Matrix3DTransformOperation
TransformationMatrix.h 82 m_matrix[0][0] = a; m_matrix[0][1] = b; m_matrix[0][2] = 0; m_matrix[0][3] = 0;
83 m_matrix[1][0] = c; m_matrix[1][1] = d; m_matrix[1][2] = 0; m_matrix[1][3] = 0;
84 m_matrix[2][0] = 0; m_matrix[2][1] = 0; m_matrix[2][2] = 1; m_matrix[2][3] = 0;
351 Matrix4 m_matrix; member in class:WebCore::TransformationMatrix
    [all...]
  /external/webkit/WebCore/svg/
SVGTransform.h 75 AffineTransform m_matrix; member in class:WebCore::SVGTransform
  /external/webkit/WebCore/css/
WebKitCSSMatrix.h 59 double a() const { return m_matrix.a(); }
60 double b() const { return m_matrix.b(); }
61 double c() const { return m_matrix.c(); }
62 double d() const { return m_matrix.d(); }
63 double e() const { return m_matrix.e(); }
64 double f() const { return m_matrix.f(); }
66 void setA(double f) { m_matrix.setA(f); }
67 void setB(double f) { m_matrix.setB(f); }
68 void setC(double f) { m_matrix.setC(f); }
69 void setD(double f) { m_matrix.setD(f);
154 TransformationMatrix m_matrix; member in class:WebCore::WebKitCSSMatrix
    [all...]

Completed in 32 milliseconds