Lines Matching full:escaped
32 // escaped char (the char following a '\\')
39 // Hit a backslash-escaped char. Need to skip over it.
416 std::string escaped;
417 escaped.reserve(2 + str.size());
424 escaped.push_back('"');
428 escaped.push_back('\\');
429 escaped.push_back(c);
431 escaped.push_back('"');
432 return escaped;
776 // * Does not detect when the final quote is escaped