Home | History | Annotate | Download | only in json

Lines Matching refs:in

3 // found in the LICENSE file.
28 std::string in = json_narrow_cases[i].to_escape;
30 JsonDoubleQuote(in, false, &out);
34 std::string in = json_narrow_cases[0].to_escape;
36 JsonDoubleQuote(in, false, &out);
40 JsonDoubleQuote(in, true, &out_quoted);
44 // now try with a NULL in the string
47 in = null_prepend + in;
51 JsonDoubleQuote(in, false, &out);
74 string16 in = WideToUTF16(json_wide_cases[i].to_escape);
75 JsonDoubleQuote(in, false, &out);
79 string16 in = WideToUTF16(json_wide_cases[0].to_escape);
81 JsonDoubleQuote(in, false, &out);
85 JsonDoubleQuote(in, true, &out_quoted);
89 // now try with a NULL in the string
92 in = null_prepend + in;
96 JsonDoubleQuote(in, false, &out);