Lines Matching refs:be
9 > (in §3) JSON text SHALL be encoded in Unicode. The default encoding is UTF-8.
11 …be represented using UTF-8, UTF-16, or UTF-32. When JSON is written in UTF-8, JSON is 8bit compati…
67 …Value<Encoding>` and `GenericDocument<Encoding>` indicates the encoding to be used to represent JS…
80 … be a little bit confusing, but each `CharType` stores a code unit, not a character (code point). …
82 For `UTF16(LE|BE)`, `UTF32(LE|BE)`, the `CharType` must be integer type of at least 2 and 4 bytes …
84 Note that C++11 introduces `char16_t` and `char32_t`, which can be used for `UTF16` and `UTF32` res…
88 …ngs will be used in the memory or streams. However, sometimes we may need to read/write files of d…
90 …s purpose. It chooses which encoding to be used according to the input or output stream. Currently…
94 …can represent unicode characters in escaped sequence `\uXXXX`, JSON can always be encoded in ASCII.
108 ASCII can be used in input stream. If the input stream contains bytes with values above 127, it wil…
110 ASCII *cannot* be used in memory (encoding of `Document` or target encoding of `Reader`), as it can…
114 …N, whether it is a valid sequence of a specified encoding. This option can be turned on by adding …
116 …t must decode the input sequence. And if the sequence was unable to be decoded, it must be invalid.