Lines Matching refs:encoding
9 > (in §3) JSON text SHALL be encoded in Unicode. The default encoding is UTF-8.
11 …ible. When JSON is written in UTF-16 or UTF-32, the binary content-transfer-encoding must be used.
30 * UTF-8: 8-bit variable-width encoding. It maps a code point to 1–4 bytes.
31 * UTF-16: 16-bit variable-width encoding. It maps a code point to 1–2 16-bit code units (i.e., 2–4 …
32 * UTF-32: 32-bit fixed-width encoding. It directly maps a code point to a single 32-bit code unit (…
67 … `GenericValue<Encoding>` and `GenericDocument<Encoding>` indicates the encoding to be used to rep…
80 As shown in the declaration, each encoding has a `CharType` template parameter. Actually, it may be…
88 …, sometimes we may need to read/write files of different encodings. The encoding needed to be deci…
90 `AutoUTF` is an encoding designed for this purpose. It chooses which encoding to be used according …
110 ASCII *cannot* be used in memory (encoding of `Document` or target encoding of `Reader`), as it can…
114 … validate the input JSON, whether it is a valid sequence of a specified encoding. This option can …
116 If the input encoding and output encoding is different, `Reader` and `Writer` will automatically tr…
120 Although the encoding functions in RapidJSON are designed for JSON parsing/generation, user may abu…
146 You may also use `AutoUTF` and the associated streams for setting source/target encoding in runtime.