Home
last modified time | relevance | path

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

/external/skia/modules/svg/include/
DSkSVGTypes.h437 class SkSVGFontFamily {
444 SkSVGFontFamily() : fType(Type::kInherit) {} in SkSVGFontFamily() function
445 explicit SkSVGFontFamily(const char family[]) in SkSVGFontFamily() function
449 bool operator==(const SkSVGFontFamily& other) const {
452 bool operator!=(const SkSVGFontFamily& other) const { return !(*this == other); }
DSkSVGAttribute.h94 SkSVGProperty<SkSVGFontFamily, true> fFontFamily;
DSkSVGNode.h122 SVG_PRES_ATTR(FontFamily , SkSVGFontFamily, true)
/external/skia/modules/svg/src/
DSkSVGAttributeParser.cpp775 bool SkSVGAttributeParser::parse(SkSVGFontFamily* family) { in parse()
778 *family = SkSVGFontFamily(); in parse()
786 *family = SkSVGFontFamily(family_name.c_str()); in parse()