Lines Matching refs:rapidjson
3 In RapidJSON, `rapidjson::Stream` is a concept for reading/writing JSON. Here we first show how to …
13 …t represents a complete, read-only JSON stored in memory. It is defined in `rapidjson/rapidjson.h`.
16 #include "rapidjson/document.h" // will include "rapidjson/rapidjson.h"
18 using namespace rapidjson;
44 #include "rapidjson/stringbuffer.h"
75 #include "rapidjson/filereadstream.h"
78 using namespace rapidjson;
100 #include "rapidjson/filewritestream.h"
103 using namespace rapidjson;
130 …TFInputStream` and `AutoUTFOutputStream`. These streams are defined in `rapidjson/encodedstream.h`.
136 …first one is a `Encoding` class, such as `UTF8`, `UTF16LE`, defined in `rapidjson/encodings.h`. Th…
139 #include "rapidjson/document.h"
140 #include "rapidjson/filereadstream.h" // FileReadStream
141 #include "rapidjson/encodedstream.h" // EncodedInputStream
144 using namespace rapidjson;
164 #include "rapidjson/filewritestream.h" // FileWriteStream
165 #include "rapidjson/encodedstream.h" // EncodedOutputStream
192 #include "rapidjson/document.h"
193 #include "rapidjson/filereadstream.h" // FileReadStream
194 #include "rapidjson/encodedstream.h" // AutoUTFInputStream
197 using namespace rapidjson;
221 using namespace rapidjson;
241 … interface can be a stream. The Stream interface is defined in comments of `rapidjson/rapidjson.h`: