HomeSort by relevance Sort by last modified time
    Searched defs:viewBox (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFitToViewBox.h 58 document.accessSVGExtensions().reportError("A negative value for ViewBox width is not allowed");
62 document.accessSVGExtensions().reportError("A negative value for ViewBox height is not allowed");
77 SVGAnimatedRect* viewBox() const { return m_viewBox.get(); }
PatternAttributes.h 59 FloatRect viewBox() const { return m_viewBox; }
  /external/chromium_org/third_party/skia/src/svg/
SkSVGSVG.cpp 21 SVG_ATTRIBUTE(viewBox),
38 SkScalar viewBox[4];
45 SkParse::FindScalars(f_viewBox.c_str(), viewBox, 4);
47 box.fLeft = SkScalarDiv(viewBox[0], width);
48 box.fTop = SkScalarDiv(viewBox[1], height);
49 box.fRight = SkScalarDiv(viewBox[2], width);
50 box.fBottom = SkScalarDiv(viewBox[3], height);
  /external/skia/src/svg/
SkSVGSVG.cpp 21 SVG_ATTRIBUTE(viewBox),
38 SkScalar viewBox[4];
45 SkParse::FindScalars(f_viewBox.c_str(), viewBox, 4);
47 box.fLeft = SkScalarDiv(viewBox[0], width);
48 box.fTop = SkScalarDiv(viewBox[1], height);
49 box.fRight = SkScalarDiv(viewBox[2], width);
50 box.fBottom = SkScalarDiv(viewBox[3], height);

Completed in 221 milliseconds