OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:animatedLocalTransform
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTextElement.h
33
virtual AffineTransform
animatedLocalTransform
() const;
SVGGraphicsElement.h
45
virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const OVERRIDE { return
animatedLocalTransform
(); }
46
virtual AffineTransform
animatedLocalTransform
() const;
SVGTextElement.cpp
42
// We override SVGGraphics::
animatedLocalTransform
() so that the transform-origin
44
AffineTransform SVGTextElement::
animatedLocalTransform
() const
SVGGraphicsElement.cpp
102
AffineTransform SVGGraphicsElement::
animatedLocalTransform
() const
258
path.transform(
animatedLocalTransform
());
SVGUseElement.cpp
558
path.transform(
animatedLocalTransform
());
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGTextPath.cpp
53
pathData.transform(pathElement->
animatedLocalTransform
());
RenderSVGResourceClipper.cpp
85
const AffineTransform&
animatedLocalTransform
, const FloatRect& objectBoundingBox) {
137
// Transform path by
animatedLocalTransform
.
138
clipPath.transform(
animatedLocalTransform
);
160
AffineTransform
animatedLocalTransform
= toSVGClipPathElement(element())->
animatedLocalTransform
();
167
animatedLocalTransform
.scale(style()->effectiveZoom());
171
if (tryPathOnlyClipping(context,
animatedLocalTransform
, targetBoundingBox)) {
183
context->concatCTM(
animatedLocalTransform
);
322
m_clipBoundaries = toSVGClipPathElement(element())->
animatedLocalTransform
().mapRect(m_clipBoundaries);
339
point = clipPathElement->
animatedLocalTransform
().inverse().mapPoint(point)
[
all
...]
RenderSVGTransformableContainer.cpp
68
m_localTransform = element->
animatedLocalTransform
();
RenderSVGForeignObject.cpp
132
m_localTransform = foreign->
animatedLocalTransform
();
RenderSVGImage.cpp
102
m_localTransform = toSVGImageElement(element())->
animatedLocalTransform
();
RenderSVGShape.cpp
157
m_localTransform = toSVGGraphicsElement(element())->
animatedLocalTransform
();
RenderSVGText.cpp
352
m_localTransform = toSVGTextElement(node())->
animatedLocalTransform
();
Completed in 132 milliseconds