Home
last modified time | relevance | path

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

/third_party/skia/modules/svg/src/
DSkSVGAttributeParser.cpp82 return this->parseWSToken() || this->parseExpectedStringToken(","); in parseCommaWspToken()
85 bool SkSVGAttributeParser::parseExpectedStringToken(const char* expected) { in parseExpectedStringToken() function in SkSVGAttributeParser
136 if (this->parseExpectedStringToken(gUnitInfo[i].fUnitName)) { in parseLengthUnitToken()
157 if (!this->parseExpectedStringToken("#") || !this->parseHexToken(&v)) { in parseHexColorToken()
270 } else if (this->parseExpectedStringToken("currentColor")) { in parse()
285 if (this->parseExpectedStringToken("#")) { in parse()
347 this->parseExpectedStringToken("+"); in parseInteger()
399 if (prefix && !this->parseExpectedStringToken(prefix)) { in parseParenthesized()
403 if (!this->parseExpectedStringToken("(")) { in parseParenthesized()
413 return this->parseExpectedStringToken(")"); in parseParenthesized()
[all …]
DSkSVGFeTurbulence.cpp50 if (this->parseExpectedStringToken("fractalNoise")) { in parse()
53 } else if (this->parseExpectedStringToken("turbulence")) { in parse()
DSkSVGGradient.cpp113 if (this->parseExpectedStringToken(gSpreadInfo[i].fName)) { in parse()
/third_party/skia/modules/svg/include/
DSkSVGAttributeParser.h90 bool parseExpectedStringToken(const char*);
120 if (this->parseExpectedStringToken(std::get<0>(arr[i]))) { in parseEnumMap()