Home | History | Annotate | Download | only in json

Lines Matching refs:json

18   // Given a root node, generates a JSON string and puts it into |json|.
19 // If |pretty_print| is true, return a slightly nicer formated json string
22 // TODO(tc): Should we generate json if it would be invalid json (e.g.,
26 std::string* json);
30 // JSON parser in binary form (as UTF8).
34 std::string* json);
36 // A static, constant JSON string representing an empty array. Useful
37 // for empty JSON argument passing.
41 JSONWriter(bool pretty_print, std::string* json);
43 // Called recursively to build the JSON string. Whe completed, value is
44 // json_string_ will contain the JSON.
53 // Where we write JSON data as we generate it.