Home
last modified time | relevance | path

Searched refs:parseEnumMap (Results 1 – 9 of 9) sorted by relevance

/external/skia/modules/svg/src/
DSkSVGAttributeParser.cpp825 if (this->parseEnumMap(gStyleMap, &type)) { in parse()
856 if (this->parseEnumMap(gWeightMap, &type)) { in parse()
877 if (this->parseEnumMap(gAnchorMap, &type)) { in parse()
911 if (this->parseEnumMap(gAlignMap, &par->fAlign)) { in parsePreserveAspectRatio()
916 this->parseEnumMap(gScaleMap, &par->fScale); in parsePreserveAspectRatio()
964 return this->parseEnumMap(gColorspaceMap, colorspace) && this->parseEOSToken(); in parse()
DSkSVGFeMorphology.cpp48 return this->parseEnumMap(gMap, op) && this->parseEOSToken(); in parse()
DSkSVGFeBlend.cpp59 return this->parseEnumMap(gMap, mode) && this->parseEOSToken(); in parse()
DSkSVGFeDisplacementMap.cpp67 return this->parseEnumMap(gMap, channel) && this->parseEOSToken(); in parse()
DSkSVGFeComposite.cpp73 return this->parseEnumMap(gOpMap, op) && this->parseEOSToken(); in parse()
DSkSVGFeColorMatrix.cpp125 return this->parseEnumMap(gTypeMap, type) && this->parseEOSToken(); in parse()
DSkSVGFe.cpp116 if (this->parseEnumMap(gTypeMap, &t)) { in parse()
DSkSVGText.cpp524 return this->parseEnumMap(gXmlSpaceMap, xs) && this->parseEOSToken(); in parse()
/external/skia/modules/svg/include/
DSkSVGAttributeParser.h118 bool parseEnumMap(const TArray& arr, T* result) { in parseEnumMap() function