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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFitToViewBox.idl 31 readonly attribute SVGAnimatedRect viewBox;
SVGFitToViewBox.h 48 FloatRect viewBox;
49 bool valueIsValid = !value.isNull() && parseViewBox(target->document(), value, viewBox);
50 target->setViewBoxBaseValue(viewBox, valueIsValid);
64 static bool parseViewBox(Document*, const LChar*& start, const LChar* end, FloatRect& viewBox, bool validate = true);
65 static bool parseViewBox(Document*, const UChar*& start, const UChar* end, FloatRect& viewBox, bool validate = true);
SVGFitToViewBox.cpp 38 static bool parseViewBoxInternal(Document* document, const CharType*& ptr, const CharType* end, FloatRect& viewBox, bool validate)
50 viewBox = FloatRect(x, y, width, height);
54 document->accessSVGExtensions()->reportWarning("Problem parsing viewBox=\"" + String(start, end - start) + "\"");
59 document->accessSVGExtensions()->reportError("A negative value for ViewBox width is not allowed");
63 document->accessSVGExtensions()->reportError("A negative value for ViewBox height is not allowed");
68 document->accessSVGExtensions()->reportWarning("Problem parsing viewBox=\"" + String(start, end - start) + "\"");
72 viewBox = FloatRect(x, y, width, height);
76 bool SVGFitToViewBox::parseViewBox(Document* document, const LChar*& ptr, const LChar* end, FloatRect& viewBox, bool validate)
78 return parseViewBoxInternal(document, ptr, end, viewBox, validate);
81 bool SVGFitToViewBox::parseViewBox(Document* document, const UChar*& ptr, const UChar* end, FloatRect& viewBox, bool validate
    [all...]
SVGViewSpec.h 74 // Custom animated 'viewBox' property.
75 PassRefPtr<SVGAnimatedRect> viewBox();
78 void setViewBoxBaseValue(const FloatRect& viewBox) { m_viewBox = viewBox; }
SVGSymbolElement.h 54 DECLARE_ANIMATED_RECT(ViewBox, viewBox)
SVGSymbolElement.cpp 35 DEFINE_ANIMATED_RECT(SVGSymbolElement, SVGNames::viewBoxAttr, ViewBox, viewBox)
39 REGISTER_LOCAL_ANIMATED_PROPERTY(viewBox)
SVGViewElement.cpp 34 DEFINE_ANIMATED_RECT(SVGViewElement, SVGNames::viewBoxAttr, ViewBox, viewBox)
39 REGISTER_LOCAL_ANIMATED_PROPERTY(viewBox)
SVGViewElement.h 60 DECLARE_ANIMATED_RECT(ViewBox, viewBox)
SVGPatternElement.h 79 DECLARE_ANIMATED_RECT(ViewBox, viewBox)
SVGViewSpec.cpp 34 // Define custom animated property 'viewBox'.
159 PassRefPtr<SVGAnimatedRect> SVGViewSpec::viewBox()
226 FloatRect viewBox;
227 if (!SVGFitToViewBox::parseViewBox(m_contextElement->document(), ptr, end, viewBox, false))
229 setViewBoxBaseValue(viewBox);
PatternAttributes.h 59 FloatRect viewBox() const { return m_viewBox; }
SVGMarkerElement.h 151 DECLARE_ANIMATED_RECT(ViewBox, viewBox)
SVGMarkerElement.cpp 56 DEFINE_ANIMATED_RECT(SVGMarkerElement, SVGNames::viewBoxAttr, ViewBox, viewBox)
68 REGISTER_LOCAL_ANIMATED_PROPERTY(viewBox)
SVGSVGElement.h 168 DECLARE_ANIMATED_RECT(ViewBox, viewBox)
SVGPatternElement.cpp 46 DEFINE_ANIMATED_RECT(SVGPatternElement, SVGNames::viewBoxAttr, ViewBox, viewBox)
59 REGISTER_LOCAL_ANIMATED_PROPERTY(viewBox)
SVGSVGElement.cpp 68 DEFINE_ANIMATED_RECT(SVGSVGElement, SVGNames::viewBoxAttr, ViewBox, viewBox)
76 REGISTER_LOCAL_ANIMATED_PROPERTY(viewBox)
565 // If no viewBox is specified but non-relative width/height values, then we
566 // should always synthesize a viewBox if we're embedded through a SVGImage.
  /external/chromium_org/third_party/skia/src/svg/
SkSVGSymbol.cpp 14 SVG_ATTRIBUTE(viewBox)
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/
SkSVGSymbol.cpp 14 SVG_ATTRIBUTE(viewBox)
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/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourcePattern.cpp 77 // An empty viewBox disables rendering.
78 if (m_attributes.hasViewBox() && m_attributes.viewBox().isEmpty())
223 AffineTransform viewBoxCTM = SVGFitToViewBox::viewBoxToViewTransform(attributes.viewBox(), attributes.preserveAspectRatio(), patternBoundaries.width(), patternBoundaries.height());
225 // Apply viewBox/objectBoundingBox transformations.
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
pprof     [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
pprof     [all...]

Completed in 3734 milliseconds