Lines Matching refs:valueStr
187 SkString valueStr(rawValue, rawValueLen); in setValue() local
204 while ((poundPos = strchr(valueStr.c_str(), '#')) != nullptr) { in setValue()
205 size_t offset = poundPos - valueStr.c_str(); in setValue()
206 if (valueStr.size() - offset < 4) in setValue()
215 valueStr.insertUnichar(offset + 1, r); in setValue()
216 valueStr.insertUnichar(offset + 3, g); in setValue()
217 valueStr.insertUnichar(offset + 5, b); in setValue()
220 valueStr.insert(offset + 1, "xFF"); in setValue()
234 char* stringHeader = valueStr.writable_str(); in setValue()
236 rawValue = valueStr.c_str(); in setValue()
242 valueStr.remove(0, 8); in setValue()
251 const char* script = valueStr.c_str(); in setValue()