Searched refs:InputStream (Results 1 – 7 of 7) sorted by relevance
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | encodings.h | 145 template <typename InputStream> 146 static bool Decode(InputStream& is, unsigned* codepoint) { in Decode() 150 typename InputStream::Ch c = is.Take(); in Decode() 178 template <typename InputStream, typename OutputStream> 179 static bool Validate(InputStream& is, OutputStream& os) { in Validate() 306 template <typename InputStream> 307 static bool Decode(InputStream& is, unsigned* codepoint) { in Decode() 308 RAPIDJSON_STATIC_ASSERT(sizeof(typename InputStream::Ch) >= 2); in Decode() 309 typename InputStream::Ch c = is.Take(); in Decode() 324 template <typename InputStream, typename OutputStream> [all …]
|
D | cursorstreamwrapper.h | 38 template <typename InputStream, typename Encoding = UTF8<> > 39 class CursorStreamWrapper : public GenericStreamWrapper<InputStream, Encoding> { 43 CursorStreamWrapper(InputStream& is): in CursorStreamWrapper() 44 GenericStreamWrapper<InputStream, Encoding>(is), line_(1), col_(0) {} in CursorStreamWrapper()
|
D | reader.h | 265 template<typename InputStream> 266 void SkipWhitespace(InputStream& is) { in SkipWhitespace() 267 internal::StreamLocalCopy<InputStream> copy(is); in SkipWhitespace() 268 InputStream& s(copy.s); in SkipWhitespace() 270 typename InputStream::Ch c; in SkipWhitespace() 558 template <unsigned parseFlags, typename InputStream, typename Handler> 559 ParseResult Parse(InputStream& is, Handler& handler) { in Parse() 599 template <typename InputStream, typename Handler> 600 ParseResult Parse(InputStream& is, Handler& handler) { in Parse() 619 template <unsigned parseFlags, typename InputStream, typename Handler> [all …]
|
D | stream.h | 118 template <typename InputStream, typename Encoding = UTF8<> > 122 GenericStreamWrapper(InputStream& is): is_(is) {} in GenericStreamWrapper() 140 InputStream& is_;
|
D | document.h | 2641 template <unsigned parseFlags, typename SourceEncoding, typename InputStream> 2642 GenericDocument& ParseStream(InputStream& is) { 2660 template <unsigned parseFlags, typename InputStream> 2661 GenericDocument& ParseStream(InputStream& is) { 2662 return ParseStream<parseFlags, Encoding, InputStream>(is); 2670 template <typename InputStream> 2671 GenericDocument& ParseStream(InputStream& is) { 2672 return ParseStream<kParseDefaultFlags, Encoding, InputStream>(is);
|
D | schema.h | 3196 typename InputStream, 3203 typedef typename InputStream::Ch Ch; 3211 …SchemaValidatingReader(InputStream& is, const SchemaDocumentType& sd) : is_(is), sd_(sd), invalidS… 3246 InputStream& is_;
|
/lvgl-latest/src/libs/thorvg/rapidjson/internal/ |
D | regex.h | 189 template <typename InputStream> in RAPIDJSON_DIAG_OFF() 190 void Parse(DecodedStream<InputStream, Encoding>& ds) { in RAPIDJSON_DIAG_OFF() 467 template <typename InputStream> in RAPIDJSON_DIAG_OFF() 468 bool ParseUnsigned(DecodedStream<InputStream, Encoding>& ds, unsigned* u) { in RAPIDJSON_DIAG_OFF() 481 template <typename InputStream> in RAPIDJSON_DIAG_OFF() 482 bool ParseRange(DecodedStream<InputStream, Encoding>& ds, SizeType* range) { in RAPIDJSON_DIAG_OFF() 561 template <typename InputStream> in RAPIDJSON_DIAG_OFF() 562 bool CharacterEscape(DecodedStream<InputStream, Encoding>& ds, unsigned* escapedCodepoint) { in RAPIDJSON_DIAG_OFF() 628 template <typename InputStream> in RAPIDJSON_DIAG_OFF() 629 bool Match(InputStream& is) { in RAPIDJSON_DIAG_OFF() [all …]
|