NDDEM
|
#include "rapidjson.h"
Go to the source code of this file.
Classes | |
struct | UTF8< CharType > |
UTF-8 encoding. More... | |
struct | UTF16< CharType > |
UTF-16 encoding. More... | |
struct | UTF16LE< CharType > |
UTF-16 little endian encoding. More... | |
struct | UTF16BE< CharType > |
UTF-16 big endian encoding. More... | |
struct | UTF32< CharType > |
UTF-32 encoding. More... | |
struct | UTF32LE< CharType > |
UTF-32 little endian enocoding. More... | |
struct | UTF32BE< CharType > |
UTF-32 big endian encoding. More... | |
struct | ASCII< CharType > |
ASCII encoding. More... | |
struct | AutoUTF< CharType > |
Dynamically select encoding according to stream's runtime-specified UTF encoding type. More... | |
struct | Transcoder< SourceEncoding, TargetEncoding > |
Encoding conversion. More... | |
struct | Transcoder< Encoding, Encoding > |
Specialization of Transcoder with same source and target encoding. More... | |
Macros | |
#define | CEREAL_RAPIDJSON_COPY() c = is.Take(); *codepoint = (*codepoint << 6) | (static_cast<unsigned char>(c) & 0x3Fu) |
#define | CEREAL_RAPIDJSON_TRANS(mask) result &= ((GetRange(static_cast<unsigned char>(c)) & mask) != 0) |
#define | CEREAL_RAPIDJSON_TAIL() CEREAL_RAPIDJSON_COPY(); CEREAL_RAPIDJSON_TRANS(0x70) |
#define | CEREAL_RAPIDJSON_COPY() os.Put(c = is.Take()) |
#define | CEREAL_RAPIDJSON_TRANS(mask) result &= ((GetRange(static_cast<unsigned char>(c)) & mask) != 0) |
#define | CEREAL_RAPIDJSON_TAIL() CEREAL_RAPIDJSON_COPY(); CEREAL_RAPIDJSON_TRANS(0x70) |
#define | CEREAL_RAPIDJSON_ENCODINGS_FUNC(x) UTF8<Ch>::x, UTF16LE<Ch>::x, UTF16BE<Ch>::x, UTF32LE<Ch>::x, UTF32BE<Ch>::x |
Enumerations | |
enum | UTFType { kUTF8 = 0 , kUTF16LE = 1 , kUTF16BE = 2 , kUTF32LE = 3 , kUTF32BE = 4 } |
Runtime-specified UTF encoding type of a stream. More... | |
Functions | |
template<typename Stream > | |
void | PutUnsafe (Stream &stream, typename Stream::Ch c) |
Write character to a stream, presuming buffer is reserved. More... | |
#define CEREAL_RAPIDJSON_COPY | ( | ) | c = is.Take(); *codepoint = (*codepoint << 6) | (static_cast<unsigned char>(c) & 0x3Fu) |
#define CEREAL_RAPIDJSON_COPY | ( | ) | os.Put(c = is.Take()) |
#define CEREAL_RAPIDJSON_ENCODINGS_FUNC | ( | x | ) | UTF8<Ch>::x, UTF16LE<Ch>::x, UTF16BE<Ch>::x, UTF32LE<Ch>::x, UTF32BE<Ch>::x |
#define CEREAL_RAPIDJSON_TAIL | ( | ) | CEREAL_RAPIDJSON_COPY(); CEREAL_RAPIDJSON_TRANS(0x70) |
#define CEREAL_RAPIDJSON_TAIL | ( | ) | CEREAL_RAPIDJSON_COPY(); CEREAL_RAPIDJSON_TRANS(0x70) |
#define CEREAL_RAPIDJSON_TRANS | ( | mask | ) | result &= ((GetRange(static_cast<unsigned char>(c)) & mask) != 0) |
#define CEREAL_RAPIDJSON_TRANS | ( | mask | ) | result &= ((GetRange(static_cast<unsigned char>(c)) & mask) != 0) |
enum UTFType |
|
inline |
Write character to a stream, presuming buffer is reserved.