Home
last modified time | relevance | path

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

/aosp_15_r20/external/skia/modules/svg/src/
H A DSkSVGAttributeParser.cpp98 return this->parseWSToken() || this->parseExpectedStringToken(","); in parseCommaWspToken()
101 bool SkSVGAttributeParser::parseExpectedStringToken(const char* expected) { in parseExpectedStringToken() function in SkSVGAttributeParser
137 if (!this->parseExpectedStringToken("\\")) { in parseEscape()
176 if (this->parseExpectedStringToken("--")) { in parseIdentToken()
179 if (this->parseExpectedStringToken("-")) { in parseIdentToken()
241 if (this->parseExpectedStringToken(gUnitInfo[i].fUnitName)) { in parseLengthUnitToken()
269 if (!this->parseExpectedStringToken("#") || !this->matchHexToken(&hexEnd)) { in parseHexColorToken()
422 if (this->parseExpectedStringToken("currentColor")) { in parseSVGColor()
435 if (!this->parseExpectedStringToken(",")) { in parseSVGColor()
470 if (this->parseExpectedStringToken("#")) { in parse()
[all …]
H A DSkSVGFeTurbulence.cpp54 if (this->parseExpectedStringToken("fractalNoise")) { in parse()
57 } else if (this->parseExpectedStringToken("turbulence")) { in parse()
H A DSkSVGGradient.cpp120 if (this->parseExpectedStringToken(gSpreadInfo[i].fName)) { in parse()
/aosp_15_r20/external/skia/modules/svg/include/
H A DSkSVGAttributeParser.h121 bool parseExpectedStringToken(const char*);
159 if (this->parseExpectedStringToken(std::get<0>(arr[i]))) { in parseEnumMap()