Lines Matching refs:parse
90 Reader::parse(const std::string& document, Value& root, bool collectComments) {
94 return parse(begin, end, root, collectComments);
97 bool Reader::parse(std::istream& sin, Value& root, bool collectComments) {
100 // Those would allow streamed input from a file, if parse() were a
107 return parse(doc, root, collectComments);
110 bool Reader::parse(const char* beginDoc,
516 // Attempts to parse the number as an integer. If the number is
574 return addError("Unable to parse token length", token);
676 "additional six characters expected to parse unicode surrogate pair.",
876 bool ok = reader.parse(sin, root, true);