transform          36 Source/core/animation/AnimatableTransform.cpp PassRefPtrWillBeRawPtr<AnimatableTransform> AnimatableTransform::create(const TransformOperations& transform)
transform          38 Source/core/animation/AnimatableTransform.cpp     return adoptRefWillBeNoop(new AnimatableTransform(transform));
transform          43 Source/core/animation/AnimatableTransform.cpp     const AnimatableTransform* transform = toAnimatableTransform(value);
transform          44 Source/core/animation/AnimatableTransform.cpp     return AnimatableTransform::create(transform->m_transform.blend(m_transform, fraction));
transform          49 Source/core/animation/AnimatableTransform.cpp     const AnimatableTransform* transform = toAnimatableTransform(value);
transform          50 Source/core/animation/AnimatableTransform.cpp     return AnimatableTransform::create(m_transform.add(transform->m_transform));
transform          55 Source/core/animation/AnimatableTransform.h     explicit AnimatableTransform(const TransformOperations& transform)
transform          56 Source/core/animation/AnimatableTransform.h         : m_transform(transform)
transform          58 Source/core/animation/AnimationTranslationUtil.cpp             ScaleTransformOperation* transform = static_cast<ScaleTransformOperation*>(transformOperations.operations()[j].get());
transform          59 Source/core/animation/AnimationTranslationUtil.cpp             webTransformOperations->appendScale(transform->x(), transform->y(), transform->z());
transform          67 Source/core/animation/AnimationTranslationUtil.cpp             TranslateTransformOperation* transform = static_cast<TranslateTransformOperation*>(transformOperations.operations()[j].get());
transform          68 Source/core/animation/AnimationTranslationUtil.cpp             ASSERT(transform->x().isFixed() && transform->y().isFixed());
transform          69 Source/core/animation/AnimationTranslationUtil.cpp             webTransformOperations->appendTranslate(transform->x().value(), transform->y().value(), transform->z());
transform          76 Source/core/animation/AnimationTranslationUtil.cpp             RotateTransformOperation* transform = static_cast<RotateTransformOperation*>(transformOperations.operations()[j].get());
transform          77 Source/core/animation/AnimationTranslationUtil.cpp             webTransformOperations->appendRotate(transform->x(), transform->y(), transform->z(), transform->angle());
transform          83 Source/core/animation/AnimationTranslationUtil.cpp             SkewTransformOperation* transform = static_cast<SkewTransformOperation*>(transformOperations.operations()[j].get());
transform          84 Source/core/animation/AnimationTranslationUtil.cpp             webTransformOperations->appendSkew(transform->angleX(), transform->angleY());
transform          88 Source/core/animation/AnimationTranslationUtil.cpp             MatrixTransformOperation* transform = static_cast<MatrixTransformOperation*>(transformOperations.operations()[j].get());
transform          89 Source/core/animation/AnimationTranslationUtil.cpp             TransformationMatrix m = transform->matrix();
transform          94 Source/core/animation/AnimationTranslationUtil.cpp             Matrix3DTransformOperation* transform = static_cast<Matrix3DTransformOperation*>(transformOperations.operations()[j].get());
transform          95 Source/core/animation/AnimationTranslationUtil.cpp             TransformationMatrix m = transform->matrix();
transform         100 Source/core/animation/AnimationTranslationUtil.cpp             PerspectiveTransformOperation* transform = static_cast<PerspectiveTransformOperation*>(transformOperations.operations()[j].get());
transform         101 Source/core/animation/AnimationTranslationUtil.cpp             webTransformOperations->appendPerspective(transform->perspective());
transform         483 Source/core/animation/css/CSSAnimatableValueFactory.cpp         return AnimatableTransform::create(style.transform());
transform         287 Source/core/animation/css/CSSPropertyEquality.cpp         return a.transform() == b.transform();
transform         722 Source/core/css/CSSComputedStyleDeclaration.cpp static PassRefPtrWillBeRawPtr<CSSTransformValue> valueForMatrixTransform(const TransformationMatrix& transform, const RenderStyle& style)
transform         725 Source/core/css/CSSComputedStyleDeclaration.cpp     if (transform.isAffine()) {
transform         728 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.a(), CSSPrimitiveValue::CSS_NUMBER));
transform         729 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.b(), CSSPrimitiveValue::CSS_NUMBER));
transform         730 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.c(), CSSPrimitiveValue::CSS_NUMBER));
transform         731 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.d(), CSSPrimitiveValue::CSS_NUMBER));
transform         732 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(zoomAdjustedNumberValue(transform.e(), style));
transform         733 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(zoomAdjustedNumberValue(transform.f(), style));
transform         737 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.m11(), CSSPrimitiveValue::CSS_NUMBER));
transform         738 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.m12(), CSSPrimitiveValue::CSS_NUMBER));
transform         739 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.m13(), CSSPrimitiveValue::CSS_NUMBER));
transform         740 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.m14(), CSSPrimitiveValue::CSS_NUMBER));
transform         742 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.m21(), CSSPrimitiveValue::CSS_NUMBER));
transform         743 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.m22(), CSSPrimitiveValue::CSS_NUMBER));
transform         744 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.m23(), CSSPrimitiveValue::CSS_NUMBER));
transform         745 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.m24(), CSSPrimitiveValue::CSS_NUMBER));
transform         747 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.m31(), CSSPrimitiveValue::CSS_NUMBER));
transform         748 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.m32(), CSSPrimitiveValue::CSS_NUMBER));
transform         749 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.m33(), CSSPrimitiveValue::CSS_NUMBER));
transform         750 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.m34(), CSSPrimitiveValue::CSS_NUMBER));
transform         752 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(zoomAdjustedNumberValue(transform.m41(), style));
transform         753 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(zoomAdjustedNumberValue(transform.m42(), style));
transform         754 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(zoomAdjustedNumberValue(transform.m43(), style));
transform         755 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(cssValuePool().createValue(transform.m44(), CSSPrimitiveValue::CSS_NUMBER));
transform         770 Source/core/css/CSSComputedStyleDeclaration.cpp     TransformationMatrix transform;
transform         771 Source/core/css/CSSComputedStyleDeclaration.cpp     style.applyTransform(transform, box.size(), RenderStyle::ExcludeTransformOrigin);
transform         775 Source/core/css/CSSComputedStyleDeclaration.cpp     list->append(valueForMatrixTransform(transform, style));
transform         146 Source/core/css/CSSMatrix.h     const TransformationMatrix& transform() const { return m_matrix; }
transform        1543 Source/core/css/resolver/StyleBuilderCustom.cpp         HANDLE_INHERIT_AND_INITIAL(transform, Transform);
transform         113 Source/core/html/HTMLAreaElement.cpp         p.transform(zoomTransform);
transform         367 Source/core/html/canvas/CanvasRenderingContext2D.cpp     m_path.transform(state().m_transform);
transform         369 Source/core/html/canvas/CanvasRenderingContext2D.cpp     m_path.transform(state().m_transform.inverse());
transform         690 Source/core/html/canvas/CanvasRenderingContext2D.cpp     const AffineTransform& transform = matrixTearOff->value();
transform         691 Source/core/html/canvas/CanvasRenderingContext2D.cpp     setTransform(transform.a(), transform.b(), transform.c(), transform.d(), transform.e(), transform.f());
transform         719 Source/core/html/canvas/CanvasRenderingContext2D.cpp     m_path.transform(AffineTransform().scaleNonUniform(1.0 / sx, 1.0 / sy));
transform         747 Source/core/html/canvas/CanvasRenderingContext2D.cpp     m_path.transform(AffineTransform().rotateRadians(-angleInRadians));
transform         775 Source/core/html/canvas/CanvasRenderingContext2D.cpp     m_path.transform(AffineTransform().translate(-tx, -ty));
transform         789 Source/core/html/canvas/CanvasRenderingContext2D.cpp     AffineTransform transform(m11, m12, m21, m22, dx, dy);
transform         790 Source/core/html/canvas/CanvasRenderingContext2D.cpp     AffineTransform newTransform = state().m_transform * transform;
transform         802 Source/core/html/canvas/CanvasRenderingContext2D.cpp     c->concatCTM(transform);
transform         803 Source/core/html/canvas/CanvasRenderingContext2D.cpp     m_path.transform(transform.inverse());
transform         826 Source/core/html/canvas/CanvasRenderingContext2D.cpp         m_path.transform(ctm);
transform         841 Source/core/html/canvas/CanvasRenderingContext2D.cpp     transform(m11, m12, m21, m22, dx, dy);
transform        1239 Source/core/html/canvas/CanvasRenderingContext2D.cpp     transformedPath.transform(state().m_transform);
transform         132 Source/core/html/canvas/CanvasRenderingContext2D.h     void transform(float m11, float m12, float m21, float m22, float dx, float dy);
transform          53 Source/core/html/canvas/Path2D.h     void addPath(Path2D* path, SVGMatrixTearOff* transform, ExceptionState& exceptionState)
transform          60 Source/core/html/canvas/Path2D.h         m_path.addPath(src, transform ? transform->value() : AffineTransform(1, 0, 0, 1, 0, 0));
transform         131 Source/core/inspector/InspectorLayerTreeAgent.cpp     const TransformationMatrix& transform = graphicsLayer->transform();
transform         132 Source/core/inspector/InspectorLayerTreeAgent.cpp     if (!transform.isIdentity()) {
transform         134 Source/core/inspector/InspectorLayerTreeAgent.cpp         transform.toColumnMajorFloatArray(flattenedMatrix);
transform        1833 Source/core/rendering/RenderBox.cpp     bool hasTransform = hasLayer() && layer()->transform();
transform        1873 Source/core/rendering/RenderBox.cpp     bool hasTransform = hasLayer() && layer()->transform();
transform        2016 Source/core/rendering/RenderBox.cpp             if (layer() && layer()->transform())
transform        2017 Source/core/rendering/RenderBox.cpp                 rect = layer()->transform()->mapRect(pixelSnappedIntRect(rect));
transform        2055 Source/core/rendering/RenderBox.cpp     if (hasLayer() && layer()->transform()) {
transform        2057 Source/core/rendering/RenderBox.cpp         rect = layer()->transform()->mapRect(pixelSnappedIntRect(rect));
transform        4443 Source/core/rendering/RenderBox.cpp     bool hasTransform = hasLayer() && layer()->transform();
transform         446 Source/core/rendering/RenderBoxModelObject.cpp     AffineTransform transform = context->getCTM();
transform         447 Source/core/rendering/RenderBoxModelObject.cpp     shrunkRect.inflateX(-static_cast<LayoutUnit>(ceil(1 / transform.xScale())));
transform         448 Source/core/rendering/RenderBoxModelObject.cpp     shrunkRect.inflateY(-static_cast<LayoutUnit>(ceil(1 / transform.yScale())));
transform        2528 Source/core/rendering/RenderBoxModelObject.cpp                         AffineTransform transform = context->getCTM();
transform        2529 Source/core/rendering/RenderBoxModelObject.cpp                         if (transform.a() != 1 || (transform.d() != 1 && transform.d() != -1) || transform.b() || transform.c())
transform        2763 Source/core/rendering/RenderBoxModelObject.cpp     bool hasTransform = !isInline && hasLayer() && layer()->transform();
transform         110 Source/core/rendering/RenderDetailsMarker.cpp     result.transform(AffineTransform().scale(contentWidth().toFloat(), contentHeight().toFloat()));
transform        1086 Source/core/rendering/RenderLayer.cpp     while (curr && !curr->isRootLayer() && !curr->transform())
transform        1333 Source/core/rendering/RenderLayer.cpp         TransformationMatrix transform;
transform        1334 Source/core/rendering/RenderLayer.cpp         transform.translate(pixelSnappedDelta.x(), pixelSnappedDelta.y());
transform        1335 Source/core/rendering/RenderLayer.cpp         transform = transform * *layer->transform();
transform        1342 Source/core/rendering/RenderLayer.cpp         LayoutRect result = transform.mapRect(clipRect);
transform        2272 Source/core/rendering/RenderLayer.cpp     TransformationMatrix transform(renderableTransform(paintingInfo.paintBehavior));
transform        2274 Source/core/rendering/RenderLayer.cpp     transform.translateRight(roundedDelta.x(), roundedDelta.y());
transform        2279 Source/core/rendering/RenderLayer.cpp     if (!transform.isIdentity()) {
transform        2281 Source/core/rendering/RenderLayer.cpp         context->concatCTM(transform.toAffineTransform());
transform        2285 Source/core/rendering/RenderLayer.cpp     LayerPaintingInfo transformedPaintingInfo(this, enclosingIntRect(transform.inverse().mapRect(paintingInfo.paintDirtyRect)), paintingInfo.paintBehavior,
transform        2672 Source/core/rendering/RenderLayer.cpp                 bool oldHasTransform = childLayer->transform();
transform        2674 Source/core/rendering/RenderLayer.cpp                     oldTransform = *childLayer->transform();
transform        2693 Source/core/rendering/RenderLayer.cpp                 TransformationMatrix transform;
transform        2694 Source/core/rendering/RenderLayer.cpp                 transform.translateRight(roundToInt(childOffset.x() + offset.width()), roundToInt(childOffset.y() + offset.height()));
transform        2697 Source/core/rendering/RenderLayer.cpp                 context->concatCTM(transform.toAffineTransform());
transform        2702 Source/core/rendering/RenderLayer.cpp                 columnPaintingInfo.paintDirtyRect = transform.inverse().mapRect(localDirtyRect);
transform        2879 Source/core/rendering/RenderLayer.cpp     if (transform() && !appliedTransform) {
transform        3262 Source/core/rendering/RenderLayer.cpp                 bool oldHasTransform = childLayer->transform();
transform        3264 Source/core/rendering/RenderLayer.cpp                     oldTransform = *childLayer->transform();
transform        3441 Source/core/rendering/RenderLayer.cpp     bool shouldIncludeTransform = paintsWithTransform(PaintBehaviorNormal) || (transform() && flags & PretendLayerHasOwnBacking);
transform        3447 Source/core/rendering/RenderLayer.cpp                 localClipRect = transform()->mapRect(localClipRect);
transform        3501 Source/core/rendering/RenderLayer.cpp         TransformationMatrix* affineTrans = transform();
transform        3617 Source/core/rendering/RenderLayer.cpp     return transform() && ((paintBehavior & PaintBehaviorFlattenCompositingLayers) || compositingState() != PaintsIntoOwnBacking);
transform         320 Source/core/rendering/RenderLayer.h     TransformationMatrix* transform() const { return m_transform.get(); }
transform         389 Source/core/rendering/RenderLayerClipper.cpp         if (current->transform() || (current->compositingState() == PaintsIntoOwnBacking) || current->groupedMapping())
transform         120 Source/core/rendering/RenderLayerModelObject.cpp                         || oldStyle->transform() != newStyle.transform()
transform          90 Source/core/rendering/RenderLayerReflectionInfo.cpp     TransformOperations transform;
transform          93 Source/core/rendering/RenderLayerReflectionInfo.cpp         transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed),
transform          95 Source/core/rendering/RenderLayerReflectionInfo.cpp         transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed),
transform          97 Source/core/rendering/RenderLayerReflectionInfo.cpp         transform.operations().append(ScaleTransformOperation::create(1.0, -1.0, ScaleTransformOperation::Scale));
transform         101 Source/core/rendering/RenderLayerReflectionInfo.cpp         transform.operations().append(ScaleTransformOperation::create(1.0, -1.0, ScaleTransformOperation::Scale));
transform         102 Source/core/rendering/RenderLayerReflectionInfo.cpp         transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed),
transform         104 Source/core/rendering/RenderLayerReflectionInfo.cpp         transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed),
transform         109 Source/core/rendering/RenderLayerReflectionInfo.cpp         transform.operations().append(TranslateTransformOperation::create(Length(100., Percent),
transform         111 Source/core/rendering/RenderLayerReflectionInfo.cpp         transform.operations().append(TranslateTransformOperation::create(
transform         113 Source/core/rendering/RenderLayerReflectionInfo.cpp         transform.operations().append(ScaleTransformOperation::create(-1.0, 1.0, ScaleTransformOperation::Scale));
transform         117 Source/core/rendering/RenderLayerReflectionInfo.cpp         transform.operations().append(ScaleTransformOperation::create(-1.0, 1.0, ScaleTransformOperation::Scale));
transform         118 Source/core/rendering/RenderLayerReflectionInfo.cpp         transform.operations().append(TranslateTransformOperation::create(Length(100., Percent),
transform         120 Source/core/rendering/RenderLayerReflectionInfo.cpp         transform.operations().append(TranslateTransformOperation::create(
transform         124 Source/core/rendering/RenderLayerReflectionInfo.cpp     newStyle->setTransform(transform);
transform         213 Source/core/rendering/RenderLayerRepainter.cpp                 offsetRect = m_renderer->layer()->transform()->mapRect(pixelSnappedIntRect(r));
transform        1404 Source/core/rendering/RenderObject.cpp         if (repaintContainer->hasTransform() && repaintContainer->layer()->transform())
transform        1405 Source/core/rendering/RenderObject.cpp             offsetRect = repaintContainer->layer()->transform()->mapRect(r);
transform        2307 Source/core/rendering/RenderObject.cpp     return (hasLayer() && toRenderLayerModelObject(this)->layer()->transform()) || (containerObject && containerObject->style()->hasPerspective());
transform        2310 Source/core/rendering/RenderObject.cpp void RenderObject::getTransformFromContainer(const RenderObject* containerObject, const LayoutSize& offsetInContainer, TransformationMatrix& transform) const
transform        2312 Source/core/rendering/RenderObject.cpp     transform.makeIdentity();
transform        2313 Source/core/rendering/RenderObject.cpp     transform.translate(offsetInContainer.width().toFloat(), offsetInContainer.height().toFloat());
transform        2315 Source/core/rendering/RenderObject.cpp     if (hasLayer() && (layer = toRenderLayerModelObject(this)->layer()) && layer->transform())
transform        2316 Source/core/rendering/RenderObject.cpp         transform.multiply(layer->currentTransform());
transform        2326 Source/core/rendering/RenderObject.cpp         transform.translateRight3d(-perspectiveOrigin.x(), -perspectiveOrigin.y(), 0);
transform        2327 Source/core/rendering/RenderObject.cpp         transform = perspectiveMatrix * transform;
transform        2328 Source/core/rendering/RenderObject.cpp         transform.translateRight3d(perspectiveOrigin.x(), perspectiveOrigin.y(), 0);
transform          87 Source/core/rendering/RenderReplica.cpp         RenderLayer* rootPaintingLayer = layer()->transform() ? layer()->parent() : layer()->enclosingTransformedAncestor();
transform         488 Source/core/rendering/RenderView.cpp     if (!repaintContainer && layer() && layer()->transform())
transform         489 Source/core/rendering/RenderView.cpp         rect = layer()->transform()->mapRect(rect);
transform        1777 Source/core/rendering/compositing/CompositedLayerMapping.cpp         || m_owningLayer.transform()
transform         111 Source/core/rendering/compositing/CompositingReasonFinder.cpp     return renderer->hasTransform() && renderer->style()->transform().has3DOperation();
transform        1564 Source/core/rendering/compositing/RenderLayerCompositor.cpp         if (layer->transform())
transform         896 Source/core/rendering/style/RenderStyle.cpp void RenderStyle::applyTransform(TransformationMatrix& transform, const LayoutSize& borderBoxSize, ApplyTransformOrigin applyOrigin) const
transform         898 Source/core/rendering/style/RenderStyle.cpp     applyTransform(transform, FloatRect(FloatPoint(), borderBoxSize), applyOrigin);
transform         901 Source/core/rendering/style/RenderStyle.cpp void RenderStyle::applyTransform(TransformationMatrix& transform, const FloatRect& boundingBox, ApplyTransformOrigin applyOrigin) const
transform         910 Source/core/rendering/style/RenderStyle.cpp         transform.translate3d(floatValueForLength(transformOriginX(), boundingBox.width()) + offsetX,
transform         917 Source/core/rendering/style/RenderStyle.cpp         transformOperations[i]->apply(transform, boundingBox.size());
transform         920 Source/core/rendering/style/RenderStyle.cpp         transform.translate3d(-floatValueForLength(transformOriginX(), boundingBox.width()) - offsetX,
transform         860 Source/core/rendering/style/RenderStyle.h     const TransformOperations& transform() const { return rareNonInheritedData->m_transform->m_operations; }
transform         131 Source/core/rendering/svg/RenderSVGResourceClipper.cpp         AffineTransform transform;
transform         132 Source/core/rendering/svg/RenderSVGResourceClipper.cpp         transform.translate(objectBoundingBox.x(), objectBoundingBox.y());
transform         133 Source/core/rendering/svg/RenderSVGResourceClipper.cpp         transform.scaleNonUniform(objectBoundingBox.width(), objectBoundingBox.height());
transform         134 Source/core/rendering/svg/RenderSVGResourceClipper.cpp         clipPath.transform(transform);
transform         138 Source/core/rendering/svg/RenderSVGResourceClipper.cpp     clipPath.transform(animatedLocalTransform);
transform         336 Source/core/rendering/svg/RenderSVGResourceClipper.cpp         AffineTransform transform;
transform         337 Source/core/rendering/svg/RenderSVGResourceClipper.cpp         transform.translate(objectBoundingBox.x(), objectBoundingBox.y());
transform         338 Source/core/rendering/svg/RenderSVGResourceClipper.cpp         transform.scaleNonUniform(objectBoundingBox.width(), objectBoundingBox.height());
transform         339 Source/core/rendering/svg/RenderSVGResourceClipper.cpp         point = transform.inverse().mapPoint(point);
transform         370 Source/core/rendering/svg/RenderSVGResourceClipper.cpp         AffineTransform transform;
transform         371 Source/core/rendering/svg/RenderSVGResourceClipper.cpp         transform.translate(objectBoundingBox.x(), objectBoundingBox.y());
transform         372 Source/core/rendering/svg/RenderSVGResourceClipper.cpp         transform.scaleNonUniform(objectBoundingBox.width(), objectBoundingBox.height());
transform         373 Source/core/rendering/svg/RenderSVGResourceClipper.cpp         return transform.mapRect(m_clipBoundaries);
transform         261 Source/core/rendering/svg/RenderSVGResourceContainer.cpp     AffineTransform transform = element->getScreenCTM(SVGGraphicsElement::DisallowStyleUpdate);
transform         262 Source/core/rendering/svg/RenderSVGResourceContainer.cpp     transform *= resourceTransform;
transform         263 Source/core/rendering/svg/RenderSVGResourceContainer.cpp     return transform;
transform          42 Source/core/rendering/svg/RenderSVGResourceLinearGradient.h     virtual void calculateGradientTransform(AffineTransform& transform) OVERRIDE { transform = m_attributes.gradientTransform(); }
transform         127 Source/core/rendering/svg/RenderSVGResourceMarker.cpp     AffineTransform transform;
transform         128 Source/core/rendering/svg/RenderSVGResourceMarker.cpp     transform.translate(origin.x(), origin.y());
transform         129 Source/core/rendering/svg/RenderSVGResourceMarker.cpp     transform.rotate(markerAngle == -1 ? autoAngle : markerAngle);
transform         130 Source/core/rendering/svg/RenderSVGResourceMarker.cpp     transform = markerContentTransformation(transform, referencePoint(), useStrokeWidth ? strokeWidth : -1);
transform         131 Source/core/rendering/svg/RenderSVGResourceMarker.cpp     return transform;
transform         134 Source/core/rendering/svg/RenderSVGResourceMarker.cpp void RenderSVGResourceMarker::draw(PaintInfo& paintInfo, const AffineTransform& transform)
transform         146 Source/core/rendering/svg/RenderSVGResourceMarker.cpp     if (!transform.isIdentity()) {
transform         148 Source/core/rendering/svg/RenderSVGResourceMarker.cpp         info.applyTransform(transform, false);
transform         184 Source/core/rendering/svg/RenderSVGResourceMasker.cpp         AffineTransform transform;
transform         185 Source/core/rendering/svg/RenderSVGResourceMasker.cpp         transform.translate(objectBoundingBox.x(), objectBoundingBox.y());
transform         186 Source/core/rendering/svg/RenderSVGResourceMasker.cpp         transform.scaleNonUniform(objectBoundingBox.width(), objectBoundingBox.height());
transform         187 Source/core/rendering/svg/RenderSVGResourceMasker.cpp         maskRect = transform.mapRect(maskRect);
transform         114 Source/core/rendering/svg/RenderSVGResourcePattern.cpp     patternData->transform.translate(tileBoundaries.x(), tileBoundaries.y());
transform         115 Source/core/rendering/svg/RenderSVGResourcePattern.cpp     patternData->transform.scale(tileBoundaries.width() / tileImageSize.width(), tileBoundaries.height() / tileImageSize.height());
transform         119 Source/core/rendering/svg/RenderSVGResourcePattern.cpp         patternData->transform = patternTransform * patternData->transform;
transform         125 Source/core/rendering/svg/RenderSVGResourcePattern.cpp             patternData->transform *= additionalTextTransformation;
transform         127 Source/core/rendering/svg/RenderSVGResourcePattern.cpp     patternData->pattern->setPatternSpaceTransform(patternData->transform);
transform         166 Source/core/rendering/svg/RenderSVGResourcePattern.cpp             patternData->pattern->setPatternSpaceTransform(transformOnNonScalingStroke(object, patternData->transform));
transform          42 Source/core/rendering/svg/RenderSVGResourcePattern.h     AffineTransform transform;
transform          42 Source/core/rendering/svg/RenderSVGResourceRadialGradient.h     virtual void calculateGradientTransform(AffineTransform& transform) OVERRIDE { transform = m_attributes.gradientTransform(); }
transform         174 Source/core/rendering/svg/RenderSVGShape.cpp     tempPath.transform(strokeTransform);
transform          69 Source/core/rendering/svg/RenderSVGTextPath.cpp     pathData.transform(pathElement.animatedLocalTransform());
transform         142 Source/core/rendering/svg/SVGRenderSupport.cpp         const AffineTransform& transform = current->localToParentTransform();
transform         144 Source/core/rendering/svg/SVGRenderSupport.cpp             transform.mapRect(current->objectBoundingBox()));
transform         145 Source/core/rendering/svg/SVGRenderSupport.cpp         strokeBoundingBox.unite(transform.mapRect(current->repaintRectInLocalCoordinates()));
transform         127 Source/core/rendering/svg/SVGRenderTreeAsText.cpp TextStream& operator<<(TextStream& ts, const AffineTransform& transform)
transform         129 Source/core/rendering/svg/SVGRenderTreeAsText.cpp     if (transform.isIdentity())
transform         133 Source/core/rendering/svg/SVGRenderTreeAsText.cpp            << transform.a() << "," << transform.b()
transform         135 Source/core/rendering/svg/SVGRenderTreeAsText.cpp            << transform.c() << "," << transform.d()
transform         137 Source/core/rendering/svg/SVGRenderTreeAsText.cpp            << transform.e() << "," << transform.f()
transform         543 Source/core/rendering/svg/SVGRenderTreeAsText.cpp         AffineTransform transform = attributes.patternTransform();
transform         544 Source/core/rendering/svg/SVGRenderTreeAsText.cpp         if (!transform.isIdentity())
transform         545 Source/core/rendering/svg/SVGRenderTreeAsText.cpp             ts << " [patternTransform=" << transform << "]";
transform         241 Source/core/rendering/svg/SVGRenderingContext.cpp         if (TransformationMatrix* layerTransform = layer->transform())
transform         273 Source/core/rendering/svg/SVGRenderingContext.cpp void SVGRenderingContext::clear2DRotation(AffineTransform& transform)
transform         276 Source/core/rendering/svg/SVGRenderingContext.cpp     transform.decompose(decomposition);
transform         278 Source/core/rendering/svg/SVGRenderingContext.cpp     transform.recompose(decomposition);
transform         289 Source/core/rendering/svg/SVGRenderingContext.cpp         AffineTransform transform = m_paintInfo->context->getCTM(GraphicsContext::DefinitelyIncludeDeviceScale);
transform         291 Source/core/rendering/svg/SVGRenderingContext.cpp         IntSize bufferSize(static_cast<int>(ceil(expandedBoundingBox.width() * transform.xScale())), static_cast<int>(ceil(expandedBoundingBox.height() * transform.yScale())));
transform          34 Source/core/rendering/svg/SVGTextChunkBuilder.cpp void SVGTextChunkBuilder::transformationForTextBox(SVGInlineTextBox* textBox, AffineTransform& transform) const
transform          38 Source/core/rendering/svg/SVGTextChunkBuilder.cpp         transform = s_identityTransform;
transform          42 Source/core/rendering/svg/SVGTextChunkBuilder.cpp     transform = m_textBoxTransformations.get(textBox);
transform          49 Source/core/rendering/svg/SVGTextFragment.h             result = transform;
transform          73 Source/core/rendering/svg/SVGTextFragment.h     AffineTransform transform;
transform          90 Source/core/rendering/svg/SVGTextFragment.h         result = lengthAdjustTransform.isIdentity() ? transform : transform * lengthAdjustTransform;
transform          98 Source/core/rendering/svg/SVGTextFragment.h         if (transform.isIdentity()) {
transform         103 Source/core/rendering/svg/SVGTextFragment.h         result = transform;
transform         606 Source/core/rendering/svg/SVGTextLayoutEngine.cpp                 m_currentTextFragment.transform.rotate(angle);
transform         609 Source/core/rendering/svg/SVGTextLayoutEngine.cpp                 m_currentTextFragment.transform.translate(xOrientationShift, yOrientationShift);
transform         612 Source/core/rendering/svg/SVGTextLayoutEngine.cpp                 m_currentTextFragment.transform.rotate(orientationAngle);
transform         155 Source/core/rendering/svg/SVGTextRunRenderingContext.cpp         glyphPath.transform(glyphPathTransform);
transform         194 Source/core/svg/SVGAnimateMotionElement.cpp     if (AffineTransform* transform = targetElement->supplementalTransform())
transform         195 Source/core/svg/SVGAnimateMotionElement.cpp         transform->makeIdentity();
transform         203 Source/core/svg/SVGAnimateMotionElement.cpp     AffineTransform* transform = targetElement->supplementalTransform();
transform         204 Source/core/svg/SVGAnimateMotionElement.cpp     if (!transform)
transform         207 Source/core/svg/SVGAnimateMotionElement.cpp     transform->makeIdentity();
transform         247 Source/core/svg/SVGAnimateMotionElement.cpp     AffineTransform* transform = targetElement->supplementalTransform();
transform         248 Source/core/svg/SVGAnimateMotionElement.cpp     if (!transform)
transform         255 Source/core/svg/SVGAnimateMotionElement.cpp         transform->makeIdentity();
transform         268 Source/core/svg/SVGAnimateMotionElement.cpp         transform->translate(animatedX, animatedY);
transform         288 Source/core/svg/SVGAnimateMotionElement.cpp     transform->translate(position.x(), position.y());
transform         294 Source/core/svg/SVGAnimateMotionElement.cpp     transform->rotate(angle);
transform         317 Source/core/svg/SVGAnimateMotionElement.cpp         AffineTransform* transform = shadowTreeElement->supplementalTransform();
transform         318 Source/core/svg/SVGAnimateMotionElement.cpp         if (!transform)
transform         320 Source/core/svg/SVGAnimateMotionElement.cpp         transform->setMatrix(t->a(), t->b(), t->c(), t->d(), t->e(), t->f());
transform         134 Source/core/svg/SVGGraphicsElement.cpp         TransformationMatrix transform;
transform         135 Source/core/svg/SVGGraphicsElement.cpp         style->applyTransform(transform, renderer()->objectBoundingBox());
transform         138 Source/core/svg/SVGGraphicsElement.cpp         matrix = transform.toAffineTransform();
transform         266 Source/core/svg/SVGGraphicsElement.cpp     path.transform(animatedLocalTransform());
transform          65 Source/core/svg/SVGGraphicsElement.h     SVGAnimatedTransformList* transform() { return m_transform.get(); }
transform          66 Source/core/svg/SVGGraphicsElement.h     const SVGAnimatedTransformList* transform() const { return m_transform.get(); }
transform         121 Source/core/svg/SVGLinearGradientElement.cpp         AffineTransform transform;
transform         122 Source/core/svg/SVGLinearGradientElement.cpp         element->gradientTransform()->currentValue()->concatenate(transform);
transform         123 Source/core/svg/SVGLinearGradientElement.cpp         attributes.setGradientTransform(transform);
transform          47 Source/core/svg/SVGMatrixTearOff.cpp SVGMatrixTearOff::SVGMatrixTearOff(SVGTransformTearOff* transform)
transform          48 Source/core/svg/SVGMatrixTearOff.cpp     : m_contextTransform(transform)
transform          50 Source/core/svg/SVGMatrixTearOff.cpp     ASSERT(transform);
transform         162 Source/core/svg/SVGMatrixTearOff.cpp     AffineTransform transform = value().inverse();
transform         166 Source/core/svg/SVGMatrixTearOff.cpp     return create(transform);
transform         175 Source/core/svg/SVGPatternElement.cpp         AffineTransform transform;
transform         176 Source/core/svg/SVGPatternElement.cpp         element->patternTransform()->currentValue()->concatenate(transform);
transform         177 Source/core/svg/SVGPatternElement.cpp         attributes.setPatternTransform(transform);
transform          93 Source/core/svg/SVGPoint.cpp FloatPoint SVGPoint::matrixTransform(const AffineTransform& transform) const
transform          96 Source/core/svg/SVGPoint.cpp     transform.map(static_cast<double>(x()), static_cast<double>(y()), newX, newY);
transform         305 Source/core/svg/SVGPreserveAspectRatio.cpp     AffineTransform transform;
transform         307 Source/core/svg/SVGPreserveAspectRatio.cpp         return transform;
transform         319 Source/core/svg/SVGPreserveAspectRatio.cpp         transform.scaleNonUniform(extendedPhysicalWidth / extendedLogicalWidth, extendedPhysicalHeight / extendedLogicalHeight);
transform         320 Source/core/svg/SVGPreserveAspectRatio.cpp         transform.translate(-extendedLogicalX, -extendedLogicalY);
transform         321 Source/core/svg/SVGPreserveAspectRatio.cpp         return transform;
transform         325 Source/core/svg/SVGPreserveAspectRatio.cpp         transform.scaleNonUniform(extendedPhysicalHeight / extendedLogicalHeight, extendedPhysicalHeight / extendedLogicalHeight);
transform         328 Source/core/svg/SVGPreserveAspectRatio.cpp             transform.translate(-extendedLogicalX, -extendedLogicalY);
transform         330 Source/core/svg/SVGPreserveAspectRatio.cpp             transform.translate(-extendedLogicalX - (extendedLogicalWidth - extendedPhysicalWidth * extendedLogicalHeight / extendedPhysicalHeight) / 2, -extendedLogicalY);
transform         332 Source/core/svg/SVGPreserveAspectRatio.cpp             transform.translate(-extendedLogicalX - (extendedLogicalWidth - extendedPhysicalWidth * extendedLogicalHeight / extendedPhysicalHeight), -extendedLogicalY);
transform         334 Source/core/svg/SVGPreserveAspectRatio.cpp         return transform;
transform         337 Source/core/svg/SVGPreserveAspectRatio.cpp     transform.scaleNonUniform(extendedPhysicalWidth / extendedLogicalWidth, extendedPhysicalWidth / extendedLogicalWidth);
transform         340 Source/core/svg/SVGPreserveAspectRatio.cpp         transform.translate(-extendedLogicalX, -extendedLogicalY);
transform         342 Source/core/svg/SVGPreserveAspectRatio.cpp         transform.translate(-extendedLogicalX, -extendedLogicalY - (extendedLogicalHeight - extendedPhysicalHeight * extendedLogicalWidth / extendedPhysicalWidth) / 2);
transform         344 Source/core/svg/SVGPreserveAspectRatio.cpp         transform.translate(-extendedLogicalX, -extendedLogicalY - (extendedLogicalHeight - extendedPhysicalHeight * extendedLogicalWidth / extendedPhysicalWidth));
transform         346 Source/core/svg/SVGPreserveAspectRatio.cpp     return transform;
transform         135 Source/core/svg/SVGRadialGradientElement.cpp         AffineTransform transform;
transform         136 Source/core/svg/SVGRadialGradientElement.cpp         element->gradientTransform()->currentValue()->concatenate(transform);
transform         137 Source/core/svg/SVGRadialGradientElement.cpp         attributes.setGradientTransform(transform);
transform         483 Source/core/svg/SVGSVGElement.cpp     AffineTransform transform;
transform         486 Source/core/svg/SVGSVGElement.cpp         transform.translate(m_x->currentValue()->value(lengthContext), m_y->currentValue()->value(lengthContext));
transform         508 Source/core/svg/SVGSVGElement.cpp             transform.translate(location.x() - viewBoxTransform.e(), location.y() - viewBoxTransform.f());
transform         514 Source/core/svg/SVGSVGElement.cpp                 transform.translate(-scrollOffset.width(), -scrollOffset.height());
transform         519 Source/core/svg/SVGSVGElement.cpp     return transform.multiply(viewBoxTransform);
transform         731 Source/core/svg/SVGSVGElement.cpp     RefPtr<SVGTransformList> transformList = m_viewSpec->transform();
transform         735 Source/core/svg/SVGSVGElement.cpp     AffineTransform transform;
transform         736 Source/core/svg/SVGSVGElement.cpp     if (transformList->concatenate(transform))
transform         737 Source/core/svg/SVGSVGElement.cpp         ctm *= transform;
transform          58 Source/core/svg/SVGTextElement.cpp         transform()->currentValue()->concatenate(matrix);
transform          61 Source/core/svg/SVGTextElement.cpp     const AffineTransform* transform = const_cast<SVGTextElement*>(this)->supplementalTransform();
transform          62 Source/core/svg/SVGTextElement.cpp     if (transform)
transform          63 Source/core/svg/SVGTextElement.cpp         return *transform * matrix;
transform          38 Source/core/svg/SVGTransformDistance.cpp SVGTransformDistance::SVGTransformDistance(SVGTransformType transformType, float angle, float cx, float cy, const AffineTransform& transform)
transform          43 Source/core/svg/SVGTransformDistance.cpp     , m_transform(transform)
transform         120 Source/core/svg/SVGTransformDistance.cpp     RefPtr<SVGTransform> transform = SVGTransform::create();
transform         126 Source/core/svg/SVGTransformDistance.cpp         return transform.release();
transform         128 Source/core/svg/SVGTransformDistance.cpp         transform->setRotate(first->angle() + second->angle() * repeatCount, first->rotationCenter().x() + second->rotationCenter().x() * repeatCount, first->rotationCenter().y() + second->rotationCenter().y() * repeatCount);
transform         129 Source/core/svg/SVGTransformDistance.cpp         return transform.release();
transform         134 Source/core/svg/SVGTransformDistance.cpp         transform->setTranslate(dx, dy);
transform         135 Source/core/svg/SVGTransformDistance.cpp         return transform.release();
transform         141 Source/core/svg/SVGTransformDistance.cpp         transform->setScale(scale.width(), scale.height());
transform         142 Source/core/svg/SVGTransformDistance.cpp         return transform.release();
transform         145 Source/core/svg/SVGTransformDistance.cpp         transform->setSkewX(first->angle() + second->angle() * repeatCount);
transform         146 Source/core/svg/SVGTransformDistance.cpp         return transform.release();
transform         148 Source/core/svg/SVGTransformDistance.cpp         transform->setSkewY(first->angle() + second->angle() * repeatCount);
transform         149 Source/core/svg/SVGTransformDistance.cpp         return transform.release();
transform         152 Source/core/svg/SVGTransformDistance.cpp     return transform.release();
transform         157 Source/core/svg/SVGTransformDistance.cpp     RefPtr<SVGTransform> transform = passTransform;
transform         158 Source/core/svg/SVGTransformDistance.cpp     ASSERT(m_transformType == transform->transformType() || m_transformType == SVG_TRANSFORM_UNKNOWN);
transform         160 Source/core/svg/SVGTransformDistance.cpp     RefPtr<SVGTransform> newTransform = transform->clone();
transform         168 Source/core/svg/SVGTransformDistance.cpp         FloatPoint translation = transform->translate();
transform         174 Source/core/svg/SVGTransformDistance.cpp         FloatSize scale = transform->scale();
transform         180 Source/core/svg/SVGTransformDistance.cpp         FloatPoint center = transform->rotationCenter();
transform         181 Source/core/svg/SVGTransformDistance.cpp         newTransform->setRotate(transform->angle() + m_angle, center.x() + m_cx, center.y() + m_cy);
transform         185 Source/core/svg/SVGTransformDistance.cpp         newTransform->setSkewX(transform->angle() + m_angle);
transform         188 Source/core/svg/SVGTransformDistance.cpp         newTransform->setSkewY(transform->angle() + m_angle);
transform          59 Source/core/svg/SVGTransformList.cpp     RefPtr<SVGTransform> transform = SVGTransform::create(matrix);
transform          61 Source/core/svg/SVGTransformList.cpp     return appendItem(transform);
transform         133 Source/core/svg/SVGTransformList.cpp     RefPtr<SVGTransform> transform = SVGTransform::create();
transform         137 Source/core/svg/SVGTransformList.cpp         transform->setSkewX(values[0]);
transform         140 Source/core/svg/SVGTransformList.cpp         transform->setSkewY(values[0]);
transform         144 Source/core/svg/SVGTransformList.cpp             transform->setScale(values[0], values[0]);
transform         146 Source/core/svg/SVGTransformList.cpp             transform->setScale(values[0], values[1]);
transform         150 Source/core/svg/SVGTransformList.cpp             transform->setTranslate(values[0], 0);
transform         152 Source/core/svg/SVGTransformList.cpp             transform->setTranslate(values[0], values[1]);
transform         156 Source/core/svg/SVGTransformList.cpp             transform->setRotate(values[0], 0, 0);
transform         158 Source/core/svg/SVGTransformList.cpp             transform->setRotate(values[0], values[1], values[2]);
transform         161 Source/core/svg/SVGTransformList.cpp         transform->setMatrix(AffineTransform(values[0], values[1], values[2], values[3], values[4], values[5]));
transform         165 Source/core/svg/SVGTransformList.cpp     return transform.release();
transform         188 Source/core/svg/SVGTransformList.cpp         RefPtr<SVGTransform> transform = parseTransformOfType(transformType, ptr, end);
transform         189 Source/core/svg/SVGTransformList.cpp         if (!transform)
transform         196 Source/core/svg/SVGTransformList.cpp         append(transform.release());
transform         267 Source/core/svg/SVGTransformList.cpp     RefPtr<SVGTransform> transform;
transform         272 Source/core/svg/SVGTransformList.cpp         transform = parseTransformOfType(transformType, ptr, end);
transform         276 Source/core/svg/SVGTransformList.cpp         transform = parseTransformOfType(transformType, ptr, end);
transform         280 Source/core/svg/SVGTransformList.cpp     if (transform)
transform         281 Source/core/svg/SVGTransformList.cpp         svgTransformList->append(transform);
transform         535 Source/core/svg/SVGUseElement.cpp             path.transform(animatedLocalTransform());
transform          54 Source/core/svg/SVGViewSpec.h     SVGTransformList* transform() { return m_transform ? m_transform->baseValue() : 0; }
transform         222 Source/core/svg/graphics/SVGImage.cpp     AffineTransform transform = context->getCTM();
transform         223 Source/core/svg/graphics/SVGImage.cpp     FloatSize imageBufferScale = FloatSize(transform.xScale(), transform.yScale());
transform         187 Source/core/svg/graphics/filters/SVGFEImage.cpp     AffineTransform transform;
transform         197 Source/core/svg/graphics/filters/SVGFEImage.cpp             transform = makeMapBetweenRects(FloatRect(FloatPoint(), viewportSize), dstRect);
transform         199 Source/core/svg/graphics/filters/SVGFEImage.cpp         transform.translate(dstRect.x(), dstRect.y());
transform         208 Source/core/svg/graphics/filters/SVGFEImage.cpp     context->concatCTM(transform);
transform        1718 Source/platform/graphics/GraphicsContext.cpp     AffineTransform transform = getCTM(DefinitelyIncludeDeviceScale);
transform        1719 Source/platform/graphics/GraphicsContext.cpp     IntSize scaledSize(static_cast<int>(ceil(size.width() * transform.xScale())), static_cast<int>(ceil(size.height() * transform.yScale())));
transform         818 Source/platform/graphics/GraphicsLayer.cpp void GraphicsLayer::setTransform(const TransformationMatrix& transform)
transform         820 Source/platform/graphics/GraphicsLayer.cpp     m_transform = transform;
transform         165 Source/platform/graphics/GraphicsLayer.h     const TransformationMatrix& transform() const { return m_transform; }
transform         148 Source/platform/graphics/Path.cpp     m_path.transform(affineTransformToSkMatrix(xform));
transform         378 Source/platform/graphics/Path.cpp     transform(inverseEllipseTransform);
transform         380 Source/platform/graphics/Path.cpp     transform(ellipseTransform);
transform         475 Source/platform/graphics/Path.cpp void Path::addPath(const Path& src, const AffineTransform& transform)
transform         477 Source/platform/graphics/Path.cpp     m_path.addPath(src.skPath(), affineTransformToSkMatrix(transform));
transform         141 Source/platform/graphics/Path.h     void transform(const AffineTransform&);
transform         208 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp PassRefPtr<SkImageFilter> SkiaImageFilterBuilder::buildTransform(const AffineTransform& transform, SkImageFilter* input)
transform         210 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp     return adoptRef(SkMatrixImageFilter::Create(affineTransformToSkMatrix(transform), SkPaint::kHigh_FilterLevel, input));
transform         163 Source/platform/graphics/skia/SkiaUtils.cpp     scaledPath.transform(m, 0);
transform         753 Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp             if (qcms_transform* transform = m_reader->colorTransform())
transform         754 Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp                 qcms_transform_data_type(transform, row, row, info->output_width, rgbOutputColorSpace() == JCS_EXT_BGRA ? QCMS_OUTPUT_BGRX : QCMS_OUTPUT_RGBX);
transform         484 Source/platform/image-decoders/png/PNGImageDecoder.cpp     if (qcms_transform* transform = m_reader->colorTransform()) {
transform         485 Source/platform/image-decoders/png/PNGImageDecoder.cpp         qcms_transform_data(transform, row, m_reader->rowBuffer(), size().width());
transform         400 Source/platform/image-decoders/webp/WEBPImageDecoder.cpp             if (qcms_transform* transform = colorTransform())
transform         401 Source/platform/image-decoders/webp/WEBPImageDecoder.cpp                 qcms_transform_data_type(transform, row, row, width, QCMS_OUTPUT_RGBX);
transform         228 Source/platform/transforms/AffineTransform.cpp     AffineTransform transform;
transform         229 Source/platform/transforms/AffineTransform.cpp     transform.translate(dest.x() - source.x(), dest.y() - source.y());
transform         230 Source/platform/transforms/AffineTransform.cpp     transform.scale(dest.width() / source.width(), dest.height() / source.height());
transform         231 Source/platform/transforms/AffineTransform.cpp     return transform;
transform          46 Source/platform/transforms/InterpolatedTransformOperation.cpp void InterpolatedTransformOperation::apply(TransformationMatrix& transform, const FloatSize& borderBoxSize) const
transform          54 Source/platform/transforms/InterpolatedTransformOperation.cpp     transform.multiply(toTransform);
transform          55 Source/platform/transforms/Matrix3DTransformOperation.h     virtual void apply(TransformationMatrix& transform, const FloatSize&) const OVERRIDE
transform          57 Source/platform/transforms/Matrix3DTransformOperation.h         transform.multiply(TransformationMatrix(m_matrix));
transform          61 Source/platform/transforms/MatrixTransformOperation.h     virtual void apply(TransformationMatrix& transform, const FloatSize&) const OVERRIDE
transform          64 Source/platform/transforms/MatrixTransformOperation.h         transform.multiply(matrix);
transform          54 Source/platform/transforms/PerspectiveTransformOperation.h     virtual void apply(TransformationMatrix& transform, const FloatSize&) const OVERRIDE
transform          56 Source/platform/transforms/PerspectiveTransformOperation.h         transform.applyPerspective(m_p);
transform          62 Source/platform/transforms/RotateTransformOperation.h     virtual void apply(TransformationMatrix& transform, const FloatSize& /*borderBoxSize*/) const OVERRIDE
transform          64 Source/platform/transforms/RotateTransformOperation.h         transform.rotate3d(m_x, m_y, m_z, m_angle);
transform          61 Source/platform/transforms/ScaleTransformOperation.h     virtual void apply(TransformationMatrix& transform, const FloatSize&) const OVERRIDE
transform          63 Source/platform/transforms/ScaleTransformOperation.h         transform.scale3d(m_x, m_y, m_z);
transform          54 Source/platform/transforms/SkewTransformOperation.h     virtual void apply(TransformationMatrix& transform, const FloatSize&) const OVERRIDE
transform          56 Source/platform/transforms/SkewTransformOperation.h         transform.skew(m_angleX, m_angleY);
transform          66 Source/platform/transforms/TranslateTransformOperation.h     virtual void apply(TransformationMatrix& transform, const FloatSize& borderBoxSize) const OVERRIDE
transform          68 Source/platform/transforms/TranslateTransformOperation.h         transform.translate3d(x(borderBoxSize), y(borderBoxSize), z());
transform        3883 Source/web/WebViewImpl.cpp         WebCore::TransformationMatrix transform;
transform        3884 Source/web/WebViewImpl.cpp         transform.translate(m_rootLayerOffset.width, m_rootLayerOffset.height);
transform        3885 Source/web/WebViewImpl.cpp         transform = transform.scale(m_rootLayerScale);
transform        3886 Source/web/WebViewImpl.cpp         m_rootTransformLayer->setTransform(transform);
transform         102 public/platform/WebLayer.h     virtual SkMatrix44 transform() const = 0;