/external/chromium/base/json/ |
json_writer.h | 46 // json_string_ will contain the JSON. 49 // Appends a quoted, escaped, version of (UTF-8) str to json_string_. 52 // Adds space to json_string_ for the indent level. 56 std::string* json_string_; member in class:base::JSONWriter
|
json_writer.cc | 47 : json_string_(json), 57 json_string_->append("null"); 65 json_string_->append(value ? "true" : "false"); 74 StringAppendF(json_string_, "%d", value); 100 json_string_->append(real); 110 JsonDoubleQuote(UTF8ToUTF16(value), true, json_string_); local 112 JsonDoubleQuote(value, true, json_string_); 119 json_string_->append("["); 121 json_string_->append(" "); 126 json_string_->append(",") 194 JsonDoubleQuote(UTF8ToUTF16(str), true, json_string_); local [all...] |
/external/chromium_org/base/json/ |
json_string_value_serializer.h | 21 : json_string_(json_string), 30 : json_string_(&const_cast<std::string&>(json_string)), 67 std::string* json_string_; member in class:JSONStringValueSerializer
|
json_writer.h | 52 // json_string_ will contain the JSON. 55 // Adds space to json_string_ for the indent level. 63 std::string* json_string_; member in class:base::JSONWriter
|