Lines Matching defs:out
22 std::string out;
23 out.reserve(in.length() * 1.2);
27 out += "\\b";
29 out += "\\f";
31 out += "\\n";
33 out += "\\r";
35 out += "\\t";
37 out += "\\u00";
38 out += hex_digits[c >> 4];
39 out += hex_digits[c & 0xf];
41 out += "\\\\";
43 out += "\\\"";
45 out += c;
47 return out;
51 std::string out = EncodeJSONString(in);
52 fwrite(out.c_str(), 1, out.length(), stdout);