Lines Matching refs:OurReader
1103 class OurReader { class
1113 OurReader(OurFeatures const& features);
1125 OurReader(OurReader const&); // no impl
1126 void operator=(OurReader const&); // no impl
1222 OurReader::OurReader(OurFeatures const& features) in OurReader() function in Json::OurReader
1229 bool OurReader::parse(const char* beginDoc, in parse()
1277 bool OurReader::readValue() { in readValue()
1380 void OurReader::skipCommentTokens(Token& token) { in skipCommentTokens()
1390 bool OurReader::readToken(Token& token) { in readToken()
1490 void OurReader::skipSpaces() { in skipSpaces()
1500 bool OurReader::match(Location pattern, int patternLength) { in match()
1511 bool OurReader::readComment() { in readComment()
1535 OurReader::addComment(Location begin, Location end, CommentPlacement placement) { in addComment()
1546 bool OurReader::readCStyleComment() { in readCStyleComment()
1555 bool OurReader::readCppStyleComment() { in readCppStyleComment()
1571 bool OurReader::readNumber(bool checkInf) { in readNumber()
1597 bool OurReader::readString() { in readString()
1610 bool OurReader::readStringSingleQuote() { in readStringSingleQuote()
1622 bool OurReader::readObject(Token& tokenStart) { in readObject()
1684 bool OurReader::readArray(Token& tokenStart) { in readArray()
1722 bool OurReader::decodeNumber(Token& token) { in decodeNumber()
1732 bool OurReader::decodeNumber(Token& token, Value& decoded) { in decodeNumber()
1772 bool OurReader::decodeDouble(Token& token) { in decodeDouble()
1782 bool OurReader::decodeDouble(Token& token, Value& decoded) { in decodeDouble()
1818 bool OurReader::decodeString(Token& token) { in decodeString()
1829 bool OurReader::decodeString(Token& token, std::string& decoded) { in decodeString()
1882 bool OurReader::decodeUnicodeCodePoint(Token& token, in decodeUnicodeCodePoint()
1911 bool OurReader::decodeUnicodeEscapeSequence(Token& token, in decodeUnicodeEscapeSequence()
1940 OurReader::addError(const std::string& message, Token& token, Location extra) { in addError()
1949 bool OurReader::recoverFromError(TokenType skipUntilToken) { in recoverFromError()
1962 bool OurReader::addErrorAndRecover(const std::string& message, in addErrorAndRecover()
1969 Value& OurReader::currentValue() { return *(nodes_.top()); } in currentValue()
1971 OurReader::Char OurReader::getNextChar() { in getNextChar()
1977 void OurReader::getLocationLineAndColumn(Location location, in getLocationLineAndColumn()
2000 std::string OurReader::getLocationLineAndColumn(Location location) const { in getLocationLineAndColumn()
2008 std::string OurReader::getFormattedErrorMessages() const { in getFormattedErrorMessages()
2024 std::vector<OurReader::StructuredError> OurReader::getStructuredErrors() const { in getStructuredErrors()
2025 std::vector<OurReader::StructuredError> allErrors; in getStructuredErrors()
2030 OurReader::StructuredError structured; in getStructuredErrors()
2039 bool OurReader::pushError(const Value& value, const std::string& message) { in pushError()
2056 bool OurReader::pushError(const Value& value, const std::string& message, const Value& extra) { in pushError()
2074 bool OurReader::good() const { in good()
2081 OurReader reader_;