Searched refs:equalIndex (Results 1 – 3 of 3) sorted by relevance
119 int equalIndex = SkStrFind(string, "="); in match() local120 if (equalIndex > 0) { in match()122 SkString flag(string, equalIndex); in match()125 string += equalIndex + 1; in match()
1299 const equalIndex = cssKey.indexOf('='); constant1300 if (equalIndex !== -1) {1301 const attrId = cssKey.substr(0, equalIndex).trim();1302 let attrValue = cssKey.substr(equalIndex + 1).trim();