Home
last modified time | relevance | path

Searched refs:SkSVGFontSize (Results 1 – 4 of 4) sorted by relevance

/external/skia/modules/svg/include/
DSkSVGTypes.h486 class SkSVGFontSize {
493 SkSVGFontSize() : fType(Type::kInherit), fSize(0) {} in SkSVGFontSize() function
494 explicit SkSVGFontSize(const SkSVGLength& s) in SkSVGFontSize() function
498 bool operator==(const SkSVGFontSize& other) const {
501 bool operator!=(const SkSVGFontSize& other) const { return !(*this == other); }
DSkSVGAttribute.h96 SkSVGProperty<SkSVGFontSize , true> fFontSize;
DSkSVGNode.h123 SVG_PRES_ATTR(FontSize , SkSVGFontSize , true)
/external/skia/modules/svg/src/
DSkSVGAttributeParser.cpp796 bool SkSVGAttributeParser::parse(SkSVGFontSize* size) { in parse()
799 *size = SkSVGFontSize(); in parse()
804 *size = SkSVGFontSize(length); in parse()