• Home
  • Raw
  • Download

Lines Matching refs:OurReader

1126 class OurReader {  class
1136 OurReader(OurFeatures const& features);
1148 OurReader(OurReader const&); // no impl
1149 void operator=(OurReader const&); // no impl
1242 OurReader::OurReader(OurFeatures const& features) in OurReader() function in Json::OurReader
1247 bool OurReader::parse(const char* beginDoc, in parse()
1295 bool OurReader::readValue() { in readValue()
1374 void OurReader::skipCommentTokens(Token& token) { in skipCommentTokens()
1384 bool OurReader::readToken(Token& token) { in readToken()
1461 void OurReader::skipSpaces() { in skipSpaces()
1471 bool OurReader::match(Location pattern, int patternLength) { in match()
1482 bool OurReader::readComment() { in readComment()
1506 OurReader::addComment(Location begin, Location end, CommentPlacement placement) { in addComment()
1517 bool OurReader::readCStyleComment() { in readCStyleComment()
1526 bool OurReader::readCppStyleComment() { in readCppStyleComment()
1542 void OurReader::readNumber() { in readNumber()
1563 bool OurReader::readString() { in readString()
1576 bool OurReader::readStringSingleQuote() { in readStringSingleQuote()
1588 bool OurReader::readObject(Token& tokenStart) { in readObject()
1650 bool OurReader::readArray(Token& tokenStart) { in readArray()
1688 bool OurReader::decodeNumber(Token& token) { in decodeNumber()
1698 bool OurReader::decodeNumber(Token& token, Value& decoded) { in decodeNumber()
1738 bool OurReader::decodeDouble(Token& token) { in decodeDouble()
1748 bool OurReader::decodeDouble(Token& token, Value& decoded) { in decodeDouble()
1784 bool OurReader::decodeString(Token& token) { in decodeString()
1795 bool OurReader::decodeString(Token& token, std::string& decoded) { in decodeString()
1848 bool OurReader::decodeUnicodeCodePoint(Token& token, in decodeUnicodeCodePoint()
1877 bool OurReader::decodeUnicodeEscapeSequence(Token& token, in decodeUnicodeEscapeSequence()
1906 OurReader::addError(const std::string& message, Token& token, Location extra) { in addError()
1915 bool OurReader::recoverFromError(TokenType skipUntilToken) { in recoverFromError()
1928 bool OurReader::addErrorAndRecover(const std::string& message, in addErrorAndRecover()
1935 Value& OurReader::currentValue() { return *(nodes_.top()); } in currentValue()
1937 OurReader::Char OurReader::getNextChar() { in getNextChar()
1943 void OurReader::getLocationLineAndColumn(Location location, in getLocationLineAndColumn()
1966 std::string OurReader::getLocationLineAndColumn(Location location) const { in getLocationLineAndColumn()
1982 std::string OurReader::getFormattedErrorMessages() const { in getFormattedErrorMessages()
1998 std::vector<OurReader::StructuredError> OurReader::getStructuredErrors() const { in getStructuredErrors()
1999 std::vector<OurReader::StructuredError> allErrors; in getStructuredErrors()
2004 OurReader::StructuredError structured; in getStructuredErrors()
2013 bool OurReader::pushError(const Value& value, const std::string& message) { in pushError()
2030 bool OurReader::pushError(const Value& value, const std::string& message, const Value& extra) { in pushError()
2048 bool OurReader::good() const { in good()
2055 OurReader reader_;