Lines Matching refs:Reader

307 bool Reader::containsNewLine(Reader::Location begin, Reader::Location end) {  in containsNewLine()
317 Reader::Reader() in Reader() function in AlibabaCloud::OSS::Json::Reader
322 Reader::Reader(const Features& features) in Reader() function in AlibabaCloud::OSS::Json::Reader
328 Reader::parse(const std::string& document, Value& root, bool collectComments) { in parse()
335 bool Reader::parse(std::istream& sin, Value& root, bool collectComments) { in parse()
348 bool Reader::parse(const char* beginDoc, in parse()
389 bool Reader::readValue() { in readValue()
470 void Reader::skipCommentTokens(Token& token) { in skipCommentTokens()
480 bool Reader::readToken(Token& token) { in readToken()
551 void Reader::skipSpaces() { in skipSpaces()
561 bool Reader::match(Location pattern, int patternLength) { in match()
572 bool Reader::readComment() { in readComment()
595 JSONCPP_STRING Reader::normalizeEOL(Reader::Location begin, Reader::Location end) { in normalizeEOL()
598 Reader::Location current = begin; in normalizeEOL()
615 Reader::addComment(Location begin, Location end, CommentPlacement placement) { in addComment()
626 bool Reader::readCStyleComment() { in readCStyleComment()
635 bool Reader::readCppStyleComment() { in readCppStyleComment()
651 void Reader::readNumber() { in readNumber()
673 bool Reader::readString() { in readString()
685 bool Reader::readObject(Token& tokenStart) { in readObject()
741 bool Reader::readArray(Token& tokenStart) { in readArray()
779 bool Reader::decodeNumber(Token& token) { in decodeNumber()
789 bool Reader::decodeNumber(Token& token, Value& decoded) { in decodeNumber()
831 bool Reader::decodeDouble(Token& token) { in decodeDouble()
841 bool Reader::decodeDouble(Token& token, Value& decoded) { in decodeDouble()
853 bool Reader::decodeString(Token& token) { in decodeString()
864 bool Reader::decodeString(Token& token, JSONCPP_STRING& decoded) { in decodeString()
917 bool Reader::decodeUnicodeCodePoint(Token& token, in decodeUnicodeCodePoint()
946 bool Reader::decodeUnicodeEscapeSequence(Token& token, in decodeUnicodeEscapeSequence()
976 Reader::addError(const JSONCPP_STRING& message, Token& token, Location extra) { in addError()
985 bool Reader::recoverFromError(TokenType skipUntilToken) { in recoverFromError()
998 bool Reader::addErrorAndRecover(const JSONCPP_STRING& message, in addErrorAndRecover()
1005 Value& Reader::currentValue() { return *(nodes_.top()); } in currentValue()
1007 Reader::Char Reader::getNextChar() { in getNextChar()
1013 void Reader::getLocationLineAndColumn(Location location, in getLocationLineAndColumn()
1036 JSONCPP_STRING Reader::getLocationLineAndColumn(Location location) const { in getLocationLineAndColumn()
1045 JSONCPP_STRING Reader::getFormatedErrorMessages() const { in getFormatedErrorMessages()
1049 JSONCPP_STRING Reader::getFormattedErrorMessages() const { in getFormattedErrorMessages()
1065 std::vector<Reader::StructuredError> Reader::getStructuredErrors() const { in getStructuredErrors()
1066 std::vector<Reader::StructuredError> allErrors; in getStructuredErrors()
1071 Reader::StructuredError structured; in getStructuredErrors()
1080 bool Reader::pushError(const Value& value, const JSONCPP_STRING& message) { in pushError()
1097 bool Reader::pushError(const Value& value, const JSONCPP_STRING& message, const Value& extra) { in pushError()
1115 bool Reader::good() const { in good()