Searched defs:isIdentity (Results 1 - 11 of 11) sorted by relevance

/external/webkit/WebCore/platform/graphics/transforms/
H A DIdentityTransformOperation.h40 virtual bool isIdentity() const { return true; } function in class:WebCore::IdentityTransformOperation
H A DMatrix3DTransformOperation.h41 virtual bool isIdentity() const { return m_matrix.isIdentity(); } function in class:WebCore::Matrix3DTransformOperation
H A DPerspectiveTransformOperation.h41 virtual bool isIdentity() const { return m_p == 0; } function in class:WebCore::PerspectiveTransformOperation
H A DSkewTransformOperation.h40 virtual bool isIdentity() const { return m_angleX == 0 && m_angleY == 0; } function in class:WebCore::SkewTransformOperation
H A DMatrixTransformOperation.h46 virtual bool isIdentity() const { return m_a == 1 && m_b == 0 && m_c == 0 && m_d == 1 && m_e == 0 && m_f == 0; } function in class:WebCore::MatrixTransformOperation
H A DRotateTransformOperation.h47 virtual bool isIdentity() const { return m_angle == 0; } function in class:WebCore::RotateTransformOperation
H A DScaleTransformOperation.h49 virtual bool isIdentity() const { return m_x == 1 && m_y == 1 && m_z == 1; } function in class:WebCore::ScaleTransformOperation
H A DTranslateTransformOperation.h50 virtual bool isIdentity() const { return m_x.calcFloatValue(1) == 0 && m_y.calcFloatValue(1) == 0 && m_z.calcFloatValue(1) == 0; } function in class:WebCore::TranslateTransformOperation
H A DAffineTransform.cpp115 bool AffineTransform::isIdentity() const function in class:WebCore::AffineTransform
H A DTransformationMatrix.h111 bool isIdentity() const function in class:WebCore::TransformationMatrix
/external/skia/include/core/
H A DSkMatrix.h59 bool isIdentity() const { function in class:SkMatrix

Completed in 57 milliseconds