Lines Matching defs:parse
270 Reader::parse(const std::string& document, Value& root, bool collectComments) {
274 return parse(begin, end, root, collectComments);
277 bool Reader::parse(std::istream& sin, Value& root, bool collectComments) {
280 // Those would allow streamed input from a file, if parse() were a
287 return parse(doc, root, collectComments);
290 bool Reader::parse(const char* beginDoc,
736 // Attempts to parse the number as an integer. If the number is
793 return addError("Unable to parse token length", token);
896 "additional six characters expected to parse unicode surrogate pair.",
1137 bool parse(const char* beginDoc,
1247 bool OurReader::parse(const char* beginDoc,
1699 // Attempts to parse the number as an integer. If the number is
1756 return addError("Unable to parse token length", token);
1859 "additional six characters expected to parse unicode surrogate pair.",
2063 virtual bool parse(
2066 bool ok = reader_.parse(beginDoc, endDoc, *root, collectComments_);
2171 return reader->parse(begin, end, root, errs);