matrix            165 Source/core/animation/AnimatableValueTestHelper.cpp         TransformationMatrix matrix;
matrix            166 Source/core/animation/AnimatableValueTestHelper.cpp         op->apply(matrix, FloatSize(1.0, 1.0));
matrix            169 Source/core/animation/AnimatableValueTestHelper.cpp         if (matrix.isAffine()) {
matrix            170 Source/core/animation/AnimatableValueTestHelper.cpp             *os << matrix.a();
matrix            171 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.b();
matrix            172 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.c();
matrix            173 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.d();
matrix            174 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.e();
matrix            175 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.f();
matrix            177 Source/core/animation/AnimatableValueTestHelper.cpp             *os << matrix.m11();
matrix            178 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m12();
matrix            179 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m13();
matrix            180 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m14();
matrix            182 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m21();
matrix            183 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m22();
matrix            184 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m23();
matrix            185 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m24();
matrix            187 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m31();
matrix            188 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m32();
matrix            189 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m33();
matrix            190 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m34();
matrix            192 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m41();
matrix            193 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m42();
matrix            194 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m43();
matrix            195 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.m44();
matrix             89 Source/core/animation/AnimationTranslationUtil.cpp             TransformationMatrix m = transform->matrix();
matrix             95 Source/core/animation/AnimationTranslationUtil.cpp             TransformationMatrix m = transform->matrix();
matrix            276 Source/core/css/resolver/TransformBuilder.cpp             TransformationMatrix matrix(toCSSPrimitiveValue(transformValue->itemWithoutBoundsCheck(0))->getDoubleValue(),
matrix            292 Source/core/css/resolver/TransformBuilder.cpp             operations.operations().append(Matrix3DTransformOperation::create(matrix));
matrix            601 Source/core/rendering/RenderLayer.cpp         TransformationMatrix matrix = *m_transform;
matrix            602 Source/core/rendering/RenderLayer.cpp         makeMatrixRenderable(matrix, false /* flatten 3d */);
matrix            603 Source/core/rendering/RenderLayer.cpp         return matrix;
matrix           1406 Source/core/rendering/RenderObject.h inline void makeMatrixRenderable(TransformationMatrix& matrix, bool has3DRendering)
matrix           1409 Source/core/rendering/RenderObject.h         matrix.makeAffine();
matrix             94 Source/core/rendering/svg/SVGRenderSupport.cpp         TransformationMatrix matrix(object->localToParentTransform());
matrix             95 Source/core/rendering/svg/SVGRenderSupport.cpp         matrix.multiply(toRenderSVGRoot(parent)->localToBorderBoxTransform());
matrix             96 Source/core/rendering/svg/SVGRenderSupport.cpp         geometryMap.push(object, matrix);
matrix            127 Source/core/svg/SVGGraphicsElement.cpp     AffineTransform matrix;
matrix            138 Source/core/svg/SVGGraphicsElement.cpp         matrix = transform.toAffineTransform();
matrix            144 Source/core/svg/SVGGraphicsElement.cpp             matrix.setE(matrix.e() / zoom);
matrix            145 Source/core/svg/SVGGraphicsElement.cpp             matrix.setF(matrix.f() / zoom);
matrix            148 Source/core/svg/SVGGraphicsElement.cpp         m_transform->currentValue()->concatenate(matrix);
matrix            152 Source/core/svg/SVGGraphicsElement.cpp         return *m_supplementalTransform * matrix;
matrix            153 Source/core/svg/SVGGraphicsElement.cpp     return matrix;
matrix             60 Source/core/svg/SVGMatrixTearOff.cpp     return m_contextTransform ? m_contextTransform->target()->matrix() : m_staticValue;
matrix             99 Source/core/svg/SVGMatrixTearOff.cpp     RefPtr<SVGMatrixTearOff> matrix = create(value());
matrix            100 Source/core/svg/SVGMatrixTearOff.cpp     matrix->mutableValue()->translate(tx, ty);
matrix            101 Source/core/svg/SVGMatrixTearOff.cpp     return matrix.release();
matrix            106 Source/core/svg/SVGMatrixTearOff.cpp     RefPtr<SVGMatrixTearOff> matrix = create(value());
matrix            107 Source/core/svg/SVGMatrixTearOff.cpp     matrix->mutableValue()->scale(s, s);
matrix            108 Source/core/svg/SVGMatrixTearOff.cpp     return matrix.release();
matrix            113 Source/core/svg/SVGMatrixTearOff.cpp     RefPtr<SVGMatrixTearOff> matrix = create(value());
matrix            114 Source/core/svg/SVGMatrixTearOff.cpp     matrix->mutableValue()->scale(sx, sy);
matrix            115 Source/core/svg/SVGMatrixTearOff.cpp     return matrix.release();
matrix            120 Source/core/svg/SVGMatrixTearOff.cpp     RefPtr<SVGMatrixTearOff> matrix = create(value());
matrix            121 Source/core/svg/SVGMatrixTearOff.cpp     matrix->mutableValue()->rotate(d);
matrix            122 Source/core/svg/SVGMatrixTearOff.cpp     return matrix.release();
matrix            127 Source/core/svg/SVGMatrixTearOff.cpp     RefPtr<SVGMatrixTearOff> matrix = create(value());
matrix            128 Source/core/svg/SVGMatrixTearOff.cpp     matrix->mutableValue()->flipX();
matrix            129 Source/core/svg/SVGMatrixTearOff.cpp     return matrix.release();
matrix            134 Source/core/svg/SVGMatrixTearOff.cpp     RefPtr<SVGMatrixTearOff> matrix = create(value());
matrix            135 Source/core/svg/SVGMatrixTearOff.cpp     matrix->mutableValue()->flipY();
matrix            136 Source/core/svg/SVGMatrixTearOff.cpp     return matrix.release();
matrix            141 Source/core/svg/SVGMatrixTearOff.cpp     RefPtr<SVGMatrixTearOff> matrix = create(value());
matrix            142 Source/core/svg/SVGMatrixTearOff.cpp     matrix->mutableValue()->skewX(angle);
matrix            143 Source/core/svg/SVGMatrixTearOff.cpp     return matrix.release();
matrix            148 Source/core/svg/SVGMatrixTearOff.cpp     RefPtr<SVGMatrixTearOff> matrix = create(value());
matrix            149 Source/core/svg/SVGMatrixTearOff.cpp     matrix->mutableValue()->skewY(angle);
matrix            150 Source/core/svg/SVGMatrixTearOff.cpp     return matrix.release();
matrix            155 Source/core/svg/SVGMatrixTearOff.cpp     RefPtr<SVGMatrixTearOff> matrix = create(value());
matrix            156 Source/core/svg/SVGMatrixTearOff.cpp     *matrix->mutableValue() *= other->value();
matrix            157 Source/core/svg/SVGMatrixTearOff.cpp     return matrix.release();
matrix            211 Source/core/svg/SVGPatternElement.cpp     AffineTransform matrix;
matrix            212 Source/core/svg/SVGPatternElement.cpp     m_patternTransform->currentValue()->concatenate(matrix);
matrix            213 Source/core/svg/SVGPatternElement.cpp     return matrix;
matrix             69 Source/core/svg/SVGPointTearOff.cpp PassRefPtr<SVGPointTearOff> SVGPointTearOff::matrixTransform(PassRefPtr<SVGMatrixTearOff> matrix)
matrix             71 Source/core/svg/SVGPointTearOff.cpp     FloatPoint point = target()->matrixTransform(matrix->value());
matrix            470 Source/core/svg/SVGSVGElement.cpp PassRefPtr<SVGTransformTearOff> SVGSVGElement::createSVGTransformFromMatrix(PassRefPtr<SVGMatrixTearOff> matrix)
matrix            472 Source/core/svg/SVGSVGElement.cpp     return SVGTransformTearOff::create(SVGTransform::create(matrix->value()), 0, PropertyIsNotAnimVal);
matrix             46 Source/core/svg/SVGTextElement.cpp     AffineTransform matrix;
matrix             56 Source/core/svg/SVGTextElement.cpp         matrix = t.toAffineTransform();
matrix             58 Source/core/svg/SVGTextElement.cpp         transform()->currentValue()->concatenate(matrix);
matrix             63 Source/core/svg/SVGTextElement.cpp         return *transform * matrix;
matrix             64 Source/core/svg/SVGTextElement.cpp     return matrix;
matrix             47 Source/core/svg/SVGTransform.cpp SVGTransform::SVGTransform(const AffineTransform& matrix)
matrix             51 Source/core/svg/SVGTransform.cpp     , m_matrix(matrix)
matrix             55 Source/core/svg/SVGTransform.cpp SVGTransform::SVGTransform(SVGTransformType transformType, float angle, const FloatPoint& center, const AffineTransform& matrix)
matrix             60 Source/core/svg/SVGTransform.cpp     , m_matrix(matrix)
matrix             80 Source/core/svg/SVGTransform.cpp void SVGTransform::setMatrix(const AffineTransform& matrix)
matrix             83 Source/core/svg/SVGTransform.cpp     m_matrix = matrix;
matrix             75 Source/core/svg/SVGTransform.h     const AffineTransform& matrix() const { return m_matrix; }
matrix             55 Source/core/svg/SVGTransformList.cpp     AffineTransform matrix;
matrix             56 Source/core/svg/SVGTransformList.cpp     if (!concatenate(matrix))
matrix             59 Source/core/svg/SVGTransformList.cpp     RefPtr<SVGTransform> transform = SVGTransform::create(matrix);
matrix             72 Source/core/svg/SVGTransformList.cpp         result *= it->matrix();
matrix             50 Source/core/svg/SVGTransformListTearOff.cpp PassRefPtr<SVGTransformTearOff> SVGTransformListTearOff::createSVGTransformFromMatrix(PassRefPtr<SVGMatrixTearOff> matrix) const
matrix             52 Source/core/svg/SVGTransformListTearOff.cpp     return SVGSVGElement::createSVGTransformFromMatrix(matrix);
matrix             58 Source/core/svg/SVGTransformTearOff.cpp void SVGTransformTearOff::setMatrix(PassRefPtr<SVGMatrixTearOff> matrix, ExceptionState& exceptionState)
matrix             65 Source/core/svg/SVGTransformTearOff.cpp     target()->setMatrix(matrix->value());
matrix             63 Source/core/svg/SVGTransformTearOff.h     SVGMatrixTearOff* matrix();
matrix            423 Source/platform/graphics/GraphicsContext.cpp void GraphicsContext::setMatrix(const SkMatrix& matrix)
matrix            430 Source/platform/graphics/GraphicsContext.cpp     m_canvas->setMatrix(matrix);
matrix            433 Source/platform/graphics/GraphicsContext.cpp void GraphicsContext::concat(const SkMatrix& matrix)
matrix            438 Source/platform/graphics/GraphicsContext.cpp     if (matrix.isIdentity())
matrix            443 Source/platform/graphics/GraphicsContext.cpp     m_canvas->concat(matrix);
matrix            871 Source/platform/graphics/GraphicsContext.cpp     SkMatrix matrix;
matrix            872 Source/platform/graphics/GraphicsContext.cpp     matrix.setTranslate(originX, originY);
matrix            873 Source/platform/graphics/GraphicsContext.cpp     shader->setLocalMatrix(matrix);
matrix           1246 Source/platform/graphics/GraphicsContext.cpp     const SkPath& path,  const SkRect& textRect, const SkMatrix* matrix, const SkPaint& paint)
matrix           1251 Source/platform/graphics/GraphicsContext.cpp     m_canvas->drawTextOnPath(text, byteLength, path, matrix, paint);
matrix             76 Source/platform/graphics/filters/FEColorMatrix.cpp static void saturateMatrix(float s, SkScalar matrix[20])
matrix             78 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[0] = 0.213f + 0.787f * s;
matrix             79 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[1] = 0.715f - 0.715f * s;
matrix             80 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[2] = 0.072f - 0.072f * s;
matrix             81 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[3] = matrix[4] = 0;
matrix             82 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[5] = 0.213f - 0.213f * s;
matrix             83 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[6] = 0.715f + 0.285f * s;
matrix             84 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[7] = 0.072f - 0.072f * s;
matrix             85 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[8] = matrix[9] = 0;
matrix             86 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[10] = 0.213f - 0.213f * s;
matrix             87 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[11] = 0.715f - 0.715f * s;
matrix             88 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[12] = 0.072f + 0.928f * s;
matrix             89 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[13] = matrix[14] = 0;
matrix             90 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[15] = matrix[16] = matrix[17] = 0;
matrix             91 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[18] = 1;
matrix             92 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[19] = 0;
matrix             95 Source/platform/graphics/filters/FEColorMatrix.cpp static void hueRotateMatrix(float hue, SkScalar matrix[20])
matrix             99 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[0] = 0.213f + cosHue * 0.787f - sinHue * 0.213f;
matrix            100 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[1] = 0.715f - cosHue * 0.715f - sinHue * 0.715f;
matrix            101 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[2] = 0.072f - cosHue * 0.072f + sinHue * 0.928f;
matrix            102 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[3] = matrix[4] = 0;
matrix            103 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[5] = 0.213f - cosHue * 0.213f + sinHue * 0.143f;
matrix            104 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[6] = 0.715f + cosHue * 0.285f + sinHue * 0.140f;
matrix            105 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[7] = 0.072f - cosHue * 0.072f - sinHue * 0.283f;
matrix            106 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[8] = matrix[9] = 0;
matrix            107 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[10] = 0.213f - cosHue * 0.213f - sinHue * 0.787f;
matrix            108 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[11] = 0.715f - cosHue * 0.715f + sinHue * 0.715f;
matrix            109 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[12] = 0.072f + cosHue * 0.928f + sinHue * 0.072f;
matrix            110 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[13] = matrix[14] = 0;
matrix            111 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[15] = matrix[16] = matrix[17] = 0;
matrix            112 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[18] = 1;
matrix            113 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[19] = 0;
matrix            116 Source/platform/graphics/filters/FEColorMatrix.cpp static void luminanceToAlphaMatrix(SkScalar matrix[20])
matrix            118 Source/platform/graphics/filters/FEColorMatrix.cpp     memset(matrix, 0, 20 * sizeof(SkScalar));
matrix            119 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[15] = 0.2125f;
matrix            120 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[16] = 0.7154f;
matrix            121 Source/platform/graphics/filters/FEColorMatrix.cpp     matrix[17] = 0.0721f;
matrix            126 Source/platform/graphics/filters/FEColorMatrix.cpp     SkScalar matrix[20];
matrix            132 Source/platform/graphics/filters/FEColorMatrix.cpp             matrix[i] = values[i];
matrix            134 Source/platform/graphics/filters/FEColorMatrix.cpp         matrix[4] *= SkScalar(255);
matrix            135 Source/platform/graphics/filters/FEColorMatrix.cpp         matrix[9] *= SkScalar(255);
matrix            136 Source/platform/graphics/filters/FEColorMatrix.cpp         matrix[14] *= SkScalar(255);
matrix            137 Source/platform/graphics/filters/FEColorMatrix.cpp         matrix[19] *= SkScalar(255);
matrix            140 Source/platform/graphics/filters/FEColorMatrix.cpp         saturateMatrix(values[0], matrix);
matrix            143 Source/platform/graphics/filters/FEColorMatrix.cpp         hueRotateMatrix(values[0], matrix);
matrix            146 Source/platform/graphics/filters/FEColorMatrix.cpp         luminanceToAlphaMatrix(matrix);
matrix            149 Source/platform/graphics/filters/FEColorMatrix.cpp     return new SkColorMatrixFilter(matrix);
matrix             43 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp PassRefPtr<SkImageFilter> createMatrixImageFilter(SkScalar matrix[20], SkImageFilter* input)
matrix             45 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp     RefPtr<SkColorFilter> colorFilter(adoptRef(new SkColorMatrixFilter(matrix)));
matrix            103 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp     SkScalar matrix[20];
matrix            104 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp     memset(matrix, 0, 20 * sizeof(SkScalar));
matrix            105 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp     matrix[0] = matrix[6] = matrix[12] = matrix[18] = 1.f;
matrix            106 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp     noopFilter = createMatrixImageFilter(matrix, 0);
matrix             76 Source/platform/graphics/filters/SourceAlpha.cpp     SkScalar matrix[20] = {
matrix             82 Source/platform/graphics/filters/SourceAlpha.cpp     RefPtr<SkColorFilter> colorFilter(adoptRef(new SkColorMatrixFilter(matrix)));
matrix             59 Source/platform/graphics/skia/NativeImageSkia.cpp ResamplingMode NativeImageSkia::computeResamplingMode(const SkMatrix& matrix, float srcWidth, float srcHeight, float destWidth, float destHeight) const
matrix            135 Source/platform/graphics/skia/NativeImageSkia.cpp     if (!(matrix.getType() & (SkMatrix::kAffine_Mask | SkMatrix::kPerspective_Mask)))
matrix             35 Source/platform/transforms/Matrix3DTransformOperation.h     static PassRefPtr<Matrix3DTransformOperation> create(const TransformationMatrix& matrix)
matrix             37 Source/platform/transforms/Matrix3DTransformOperation.h         return adoptRef(new Matrix3DTransformOperation(matrix));
matrix             40 Source/platform/transforms/Matrix3DTransformOperation.h     TransformationMatrix matrix() const {return m_matrix; }
matrix             45 Source/platform/transforms/MatrixTransformOperation.h     TransformationMatrix matrix() const { return TransformationMatrix(m_a, m_b, m_c, m_d, m_e, m_f); }
matrix             63 Source/platform/transforms/MatrixTransformOperation.h         TransformationMatrix matrix(m_a, m_b, m_c, m_d, m_e, m_f);
matrix             64 Source/platform/transforms/MatrixTransformOperation.h         transform.multiply(matrix);
matrix            166 Source/platform/transforms/TransformationMatrix.cpp static void adjoint(const TransformationMatrix::Matrix4& matrix, TransformationMatrix::Matrix4& result)
matrix            170 Source/platform/transforms/TransformationMatrix.cpp     double a1 = matrix[0][0];
matrix            171 Source/platform/transforms/TransformationMatrix.cpp     double b1 = matrix[0][1];
matrix            172 Source/platform/transforms/TransformationMatrix.cpp     double c1 = matrix[0][2];
matrix            173 Source/platform/transforms/TransformationMatrix.cpp     double d1 = matrix[0][3];
matrix            175 Source/platform/transforms/TransformationMatrix.cpp     double a2 = matrix[1][0];
matrix            176 Source/platform/transforms/TransformationMatrix.cpp     double b2 = matrix[1][1];
matrix            177 Source/platform/transforms/TransformationMatrix.cpp     double c2 = matrix[1][2];
matrix            178 Source/platform/transforms/TransformationMatrix.cpp     double d2 = matrix[1][3];
matrix            180 Source/platform/transforms/TransformationMatrix.cpp     double a3 = matrix[2][0];
matrix            181 Source/platform/transforms/TransformationMatrix.cpp     double b3 = matrix[2][1];
matrix            182 Source/platform/transforms/TransformationMatrix.cpp     double c3 = matrix[2][2];
matrix            183 Source/platform/transforms/TransformationMatrix.cpp     double d3 = matrix[2][3];
matrix            185 Source/platform/transforms/TransformationMatrix.cpp     double a4 = matrix[3][0];
matrix            186 Source/platform/transforms/TransformationMatrix.cpp     double b4 = matrix[3][1];
matrix            187 Source/platform/transforms/TransformationMatrix.cpp     double c4 = matrix[3][2];
matrix            188 Source/platform/transforms/TransformationMatrix.cpp     double d4 = matrix[3][3];
matrix            213 Source/platform/transforms/TransformationMatrix.cpp static bool inverse(const TransformationMatrix::Matrix4& matrix, TransformationMatrix::Matrix4& result)
matrix            216 Source/platform/transforms/TransformationMatrix.cpp     adjoint(matrix, result);
matrix            221 Source/platform/transforms/TransformationMatrix.cpp     double det = determinant4x4(matrix);
matrix           1510 Source/platform/transforms/TransformationMatrix.cpp SkMatrix44 TransformationMatrix::toSkMatrix44(const TransformationMatrix& matrix)
matrix           1513 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(0, 0, matrix.m11());
matrix           1514 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(0, 1, matrix.m21());
matrix           1515 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(0, 2, matrix.m31());
matrix           1516 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(0, 3, matrix.m41());
matrix           1517 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(1, 0, matrix.m12());
matrix           1518 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(1, 1, matrix.m22());
matrix           1519 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(1, 2, matrix.m32());
matrix           1520 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(1, 3, matrix.m42());
matrix           1521 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(2, 0, matrix.m13());
matrix           1522 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(2, 1, matrix.m23());
matrix           1523 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(2, 2, matrix.m33());
matrix           1524 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(2, 3, matrix.m43());
matrix           1525 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(3, 0, matrix.m14());
matrix           1526 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(3, 1, matrix.m24());
matrix           1527 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(3, 2, matrix.m34());
matrix           1528 Source/platform/transforms/TransformationMatrix.cpp     ret.setDouble(3, 3, matrix.m44());
matrix             51 public/platform/WebFilterOperations.h     virtual void appendColorMatrixFilter(SkScalar matrix[20]) = 0;