Home
last modified time | relevance | path

Searched refs:Encoding (Results 1 – 11 of 11) sorted by relevance

/lvgl-latest/src/libs/thorvg/rapidjson/
Dstream.h118 template <typename InputStream, typename Encoding = UTF8<> >
121 typedef typename Encoding::Ch Ch;
153 template <typename Encoding>
155 typedef typename Encoding::Ch Ch;
172 template <typename Encoding>
173 struct StreamTraits<GenericStringStream<Encoding> > {
187 template <typename Encoding>
189 typedef typename Encoding::Ch Ch;
213 template <typename Encoding>
214 struct StreamTraits<GenericInsituStringStream<Encoding> > {
Dfwd.h46 template <typename Encoding>
51 template <typename Encoding>
58 template <typename Encoding, typename Allocator>
84 template<typename Encoding, typename Derived>
104 template <typename Encoding, typename Allocator>
107 template <bool Const, typename Encoding, typename Allocator>
113 template <typename Encoding, typename Allocator>
118 template <typename Encoding, typename Allocator, typename StackAllocator>
Dstringbuffer.h40 template <typename Encoding, typename Allocator = CrtAllocator>
43 typedef typename Encoding::Ch Ch;
99 template<typename Encoding, typename Allocator>
100 inline void PutReserve(GenericStringBuffer<Encoding, Allocator>& stream, size_t count) { in PutReserve() argument
104 template<typename Encoding, typename Allocator>
105 inline void PutUnsafe(GenericStringBuffer<Encoding, Allocator>& stream, typename Encoding::Ch c) { in PutUnsafe() argument
Dcursorstreamwrapper.h38 template <typename InputStream, typename Encoding = UTF8<> >
39 class CursorStreamWrapper : public GenericStreamWrapper<InputStream, Encoding> {
41 typedef typename Encoding::Ch Ch;
44 GenericStreamWrapper<InputStream, Encoding>(is), line_(1), col_(0) {} in CursorStreamWrapper()
Dencodedstream.h38 template <typename Encoding, typename InputByteStream> in RAPIDJSON_DIAG_OFF()
42 typedef typename Encoding::Ch Ch; in RAPIDJSON_DIAG_OFF()
45 current_ = Encoding::TakeBOM(is_); in RAPIDJSON_DIAG_OFF()
49 Ch Take() { Ch c = current_; current_ = Encoding::Take(is_); return c; } in RAPIDJSON_DIAG_OFF()
99 template <typename Encoding, typename OutputByteStream>
103 typedef typename Encoding::Ch Ch;
107 Encoding::PutBOM(os_); in os_()
110 void Put(Ch c) { Encoding::Put(os_, c); } in Put()
Ddocument.h65 template <typename Encoding, typename Allocator>
68 template <typename Encoding, typename Allocator, typename StackAllocator>
119 template <typename Encoding, typename Allocator>
122 GenericValue<Encoding, Allocator> name; //!< name of member (must be a string)
123 GenericValue<Encoding, Allocator> value; //!< value of member.
185 template <bool Const, typename Encoding, typename Allocator>
188 friend class GenericValue<Encoding,Allocator>;
191 typedef GenericMember<Encoding,Allocator> PlainType;
198 typedef GenericMemberIterator<true,Encoding,Allocator> ConstIterator;
200 typedef GenericMemberIterator<false,Encoding,Allocator> NonConstIterator;
[all …]
Dencodings.h690 template<typename Encoding>
691 struct Transcoder<Encoding, Encoding> {
706 return Encoding::Validate(is, os); // source/target encoding are the same
Dreader.h197 template<typename Encoding = UTF8<>, typename Derived = void>
199 typedef typename Encoding::Ch Ch;
Dschema.h335 template<typename Encoding, typename Allocator>
338 typedef typename Encoding::Ch Ch;
/lvgl-latest/src/libs/thorvg/rapidjson/internal/
Dstrfunc.h63 template<typename Encoding>
64 bool CountStringCodePoint(const typename Encoding::Ch* s, SizeType length, SizeType* outCount) { in CountStringCodePoint()
67 GenericStringStream<Encoding> is(s); in CountStringCodePoint()
68 const typename Encoding::Ch* end = s + length; in CountStringCodePoint()
72 if (!Encoding::Decode(is, &codepoint)) in CountStringCodePoint()
Dregex.h46 template <typename SourceStream, typename Encoding> in RAPIDJSON_DIAG_OFF()
60 if (!Encoding::Decode(ss_, &codepoint_)) in RAPIDJSON_DIAG_OFF()
74 template <typename Encoding, typename Allocator> in RAPIDJSON_DIAG_OFF()
109 template <typename Encoding, typename Allocator = CrtAllocator> in RAPIDJSON_DIAG_OFF()
112 typedef Encoding EncodingType; in RAPIDJSON_DIAG_OFF()
113 typedef typename Encoding::Ch Ch; in RAPIDJSON_DIAG_OFF()
121 GenericStringStream<Encoding> ss(source); in RAPIDJSON_DIAG_OFF()
122 DecodedStream<GenericStringStream<Encoding>, Encoding> ds(ss); in RAPIDJSON_DIAG_OFF()
190 void Parse(DecodedStream<InputStream, Encoding>& ds) { in RAPIDJSON_DIAG_OFF()
468 bool ParseUnsigned(DecodedStream<InputStream, Encoding>& ds, unsigned* u) { in RAPIDJSON_DIAG_OFF()
[all …]