Home
last modified time | relevance | path

Searched refs:json_string_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium/base/json/
Djson_writer.cc47 : json_string_(json), in JSONWriter()
57 json_string_->append("null"); in BuildJSONString()
65 json_string_->append(value ? "true" : "false"); in BuildJSONString()
74 StringAppendF(json_string_, "%d", value); in BuildJSONString()
100 json_string_->append(real); in BuildJSONString()
110 JsonDoubleQuote(UTF8ToUTF16(value), true, json_string_); in BuildJSONString()
112 JsonDoubleQuote(value, true, json_string_); in BuildJSONString()
119 json_string_->append("["); in BuildJSONString()
121 json_string_->append(" "); in BuildJSONString()
126 json_string_->append(","); in BuildJSONString()
[all …]
Djson_writer.h56 std::string* json_string_; variable