Lines Matching refs:json_string_
47 : 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()
128 json_string_->append(" "); in BuildJSONString()
138 json_string_->append(" "); in BuildJSONString()
139 json_string_->append("]"); in BuildJSONString()
145 json_string_->append("{"); in BuildJSONString()
147 json_string_->append(kPrettyPrintLineEnding); in BuildJSONString()
155 json_string_->append(","); in BuildJSONString()
157 json_string_->append(kPrettyPrintLineEnding); in BuildJSONString()
168 json_string_->append(": "); in BuildJSONString()
170 json_string_->append(":"); in BuildJSONString()
176 json_string_->append(kPrettyPrintLineEnding); in BuildJSONString()
178 json_string_->append("}"); in BuildJSONString()
180 json_string_->append("}"); in BuildJSONString()
194 JsonDoubleQuote(UTF8ToUTF16(str), true, json_string_); in AppendQuotedString()
200 json_string_->append(std::string(depth * 3, ' ')); in IndentLine()