Lines Matching refs:String

107   String doc;  in parse()
353 String Reader::normalizeEOL(Reader::Location begin, Reader::Location end) { in normalizeEOL()
354 String normalized; in normalizeEOL()
375 const String& normalized = normalizeEOL(begin, end); in addComment()
445 String name; in readObject()
602 String buffer(token.start_, token.end_); in decodeDouble()
606 "'" + String(token.start_, token.end_) + "' is not a number.", token); in decodeDouble()
612 String decoded_string; in decodeString()
622 bool Reader::decodeString(Token& token, String& decoded) { in decodeString()
726 bool Reader::addError(const String& message, Token& token, Location extra) { in addError()
748 bool Reader::addErrorAndRecover(const String& message, Token& token, in addErrorAndRecover()
784 String Reader::getLocationLineAndColumn(Location location) const { in getLocationLineAndColumn()
793 String Reader::getFormatedErrorMessages() const { in getFormatedErrorMessages()
797 String Reader::getFormattedErrorMessages() const { in getFormattedErrorMessages()
798 String formattedMessage; in getFormattedErrorMessages()
822 bool Reader::pushError(const Value& value, const String& message) { in pushError()
838 bool Reader::pushError(const Value& value, const String& message, in pushError()
890 String message;
896 String getFormattedErrorMessages() const;
933 String message_;
955 bool decodeString(Token& token, String& decoded);
962 bool addError(const String& message, Token& token, Location extra = nullptr);
964 bool addErrorAndRecover(const String& message, Token& token,
971 String getLocationLineAndColumn(Location location) const;
975 static String normalizeEOL(Location begin, Location end);
982 String document_{};
989 String commentsBefore_{};
1328 String OurReader::normalizeEOL(OurReader::Location begin, in normalizeEOL()
1330 String normalized; in normalizeEOL()
1351 const String& normalized = normalizeEOL(begin, end); in addComment()
1442 String name; in readObject()
1471 String msg = "Duplicate key: '" + name + "'"; in readObject()
1648 const String buffer(token.start_, token.end_); in decodeDouble()
1652 "'" + String(token.start_, token.end_) + "' is not a number.", token); in decodeDouble()
1659 String decoded_string; in decodeString()
1669 bool OurReader::decodeString(Token& token, String& decoded) { in decodeString()
1773 bool OurReader::addError(const String& message, Token& token, Location extra) { in addError()
1795 bool OurReader::addErrorAndRecover(const String& message, Token& token, in addErrorAndRecover()
1831 String OurReader::getLocationLineAndColumn(Location location) const { in getLocationLineAndColumn()
1839 String OurReader::getFormattedErrorMessages() const { in getFormattedErrorMessages()
1840 String formattedMessage; in getFormattedErrorMessages()
1872 String* errs) override { in parse()
1905 static const auto& valid_keys = *new std::set<String>{ in validate()
1931 Value& CharReaderBuilder::operator[](const String& key) { in operator []()
1972 String* errs) { in parseFromStream()
1975 String doc = ssin.str(); in parseFromStream()
1985 String errs; in operator >>()