HomeSort by relevance Sort by last modified time
    Searched refs:StyleUpdateStrategy (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGGraphicsElement.h 37 enum StyleUpdateStrategy { AllowStyleUpdate, DisallowStyleUpdate };
39 AffineTransform getCTM(StyleUpdateStrategy = AllowStyleUpdate);
40 AffineTransform getScreenCTM(StyleUpdateStrategy = AllowStyleUpdate);
SVGGraphicsElement.cpp 69 static AffineTransform computeCTM(SVGGraphicsElement* element, SVGElement::CTMScope mode, SVGGraphicsElement::StyleUpdateStrategy styleUpdateStrategy)
72 if (styleUpdateStrategy == SVGGraphicsElement::AllowStyleUpdate)
92 AffineTransform SVGGraphicsElement::getCTM(StyleUpdateStrategy styleUpdateStrategy)
94 return computeCTM(this, NearestViewportScope, styleUpdateStrategy);
97 AffineTransform SVGGraphicsElement::getScreenCTM(StyleUpdateStrategy styleUpdateStrategy)
99 return computeCTM(this, ScreenScope, styleUpdateStrategy);

Completed in 378 milliseconds