Lines Matching full:escaped
35 // escaped char (the char following a '\\')
42 // Hit a backslash-escaped char. Need to skip over it.
486 std::string escaped;
487 escaped.reserve(2 + str.size());
494 escaped.push_back('"');
498 escaped.push_back('\\');
499 escaped.push_back(c);
501 escaped.push_back('"');
502 return escaped;
907 // * Does not detect when the final quote is escaped