HomeSort by relevance Sort by last modified time
    Searched refs:json_string_ (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/base/json/
json_writer.cc 49 json_string_(json) {
56 json_string_->append("null");
64 json_string_->append(value ? "true" : "false");
72 json_string_->append(IntToString(value));
84 json_string_->append(Int64ToString(static_cast<int64>(value)));
104 json_string_->append(real);
112 EscapeJSONString(value, true, json_string_);
117 json_string_->push_back('[');
119 json_string_->push_back(' ');
132 json_string_->push_back(',')
    [all...]
json_string_value_serializer.cc 26 if (!json_string_ || initialized_with_const_string_)
35 return base::JSONWriter::WriteWithOptions(&root, options, json_string_);
40 if (!json_string_)
43 return base::JSONReader::ReadAndReturnError(*json_string_,
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

Completed in 231 milliseconds