Home | History | Annotate | Download | only in json

Lines Matching refs:json

5 #include "base/json/json_reader.h"
7 #include "base/json/json_parser.h"
29 "Unsupported encoding. JSON must be UTF-8.";
45 Value* JSONReader::Read(const StringPiece& json) {
47 return parser.Parse(json);
51 Value* JSONReader::Read(const StringPiece& json,
54 return parser.Parse(json);
58 Value* JSONReader::ReadAndReturnError(const StringPiece& json,
63 Value* root = parser.Parse(json);
102 Value* JSONReader::ReadToValue(const std::string& json) {
103 return parser_->Parse(json);