Lines Matching refs:valueStr
194 SkString valueStr(rawValue, rawValueLen); in setValue() local
211 while ((poundPos = strchr(valueStr.c_str(), '#')) != NULL) { in setValue()
212 size_t offset = poundPos - valueStr.c_str(); in setValue()
213 if (valueStr.size() - offset < 4) in setValue()
222 valueStr.insertUnichar(offset + 1, r); in setValue()
223 valueStr.insertUnichar(offset + 3, g); in setValue()
224 valueStr.insertUnichar(offset + 5, b); in setValue()
227 valueStr.insert(offset + 1, "xFF"); in setValue()
241 char* stringHeader = valueStr.writable_str(); in setValue()
243 rawValue = valueStr.c_str(); in setValue()
249 valueStr.remove(0, 8); in setValue()
258 const char* script = valueStr.c_str(); in setValue()