• Home
  • Raw
  • Download

Lines Matching refs:OurReader

883 class OurReader {  class
893 explicit OurReader(OurFeatures const& features);
900 OurReader(OurReader const&); // no impl
901 void operator=(OurReader const&); // no impl
997 bool OurReader::containsNewLine(OurReader::Location begin, in containsNewLine()
998 OurReader::Location end) { in containsNewLine()
1002 OurReader::OurReader(OurFeatures const& features) : features_(features) {} in OurReader() function in Json::OurReader
1004 bool OurReader::parse(const char* beginDoc, const char* endDoc, Value& root, in parse()
1050 bool OurReader::readValue() { in readValue()
1142 void OurReader::skipCommentTokens(Token& token) { in skipCommentTokens()
1152 bool OurReader::readToken(Token& token) { in readToken()
1263 void OurReader::skipSpaces() { in skipSpaces()
1273 void OurReader::skipBom(bool skipBom) { in skipBom()
1283 bool OurReader::match(const Char* pattern, int patternLength) { in match()
1294 bool OurReader::readComment() { in readComment()
1328 String OurReader::normalizeEOL(OurReader::Location begin, in normalizeEOL()
1329 OurReader::Location end) { in normalizeEOL()
1332 OurReader::Location current = begin; in normalizeEOL()
1348 void OurReader::addComment(Location begin, Location end, in addComment()
1360 bool OurReader::readCStyleComment(bool* containsNewLineResult) { in readCStyleComment()
1374 bool OurReader::readCppStyleComment() { in readCppStyleComment()
1390 bool OurReader::readNumber(bool checkInf) { in readNumber()
1416 bool OurReader::readString() { in readString()
1428 bool OurReader::readStringSingleQuote() { in readStringSingleQuote()
1440 bool OurReader::readObject(Token& token) { in readObject()
1504 bool OurReader::readArray(Token& token) { in readArray()
1546 bool OurReader::decodeNumber(Token& token) { in decodeNumber()
1556 bool OurReader::decodeNumber(Token& token, Value& decoded) { in decodeNumber()
1636 bool OurReader::decodeDouble(Token& token) { in decodeDouble()
1646 bool OurReader::decodeDouble(Token& token, Value& decoded) { in decodeDouble()
1658 bool OurReader::decodeString(Token& token) { in decodeString()
1669 bool OurReader::decodeString(Token& token, String& decoded) { in decodeString()
1722 bool OurReader::decodeUnicodeCodePoint(Token& token, Location& current, in decodeUnicodeCodePoint()
1747 bool OurReader::decodeUnicodeEscapeSequence(Token& token, Location& current, in decodeUnicodeEscapeSequence()
1773 bool OurReader::addError(const String& message, Token& token, Location extra) { in addError()
1782 bool OurReader::recoverFromError(TokenType skipUntilToken) { in recoverFromError()
1795 bool OurReader::addErrorAndRecover(const String& message, Token& token, in addErrorAndRecover()
1801 Value& OurReader::currentValue() { return *(nodes_.top()); } in currentValue()
1803 OurReader::Char OurReader::getNextChar() { in getNextChar()
1809 void OurReader::getLocationLineAndColumn(Location location, int& line, in getLocationLineAndColumn()
1831 String OurReader::getLocationLineAndColumn(Location location) const { in getLocationLineAndColumn()
1839 String OurReader::getFormattedErrorMessages() const { in getFormattedErrorMessages()
1852 std::vector<OurReader::StructuredError> OurReader::getStructuredErrors() const { in getStructuredErrors()
1853 std::vector<OurReader::StructuredError> allErrors; in getStructuredErrors()
1855 OurReader::StructuredError structured; in getStructuredErrors()
1866 OurReader reader_;