Searched refs:AutoUTFOutputStream (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
D | encodedstream.h | 199 class AutoUTFOutputStream { 210 AutoUTFOutputStream(OutputByteStream& os, UTFType type, bool putBOM) : os_(&os), type_(type) { in AutoUTFOutputStream() function 237 AutoUTFOutputStream(const AutoUTFOutputStream&); 238 AutoUTFOutputStream& operator=(const AutoUTFOutputStream&);
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/diagram/ |
D | utilityclass.dot | 39 AutoUTFInputStream; AutoUTFOutputStream 62 AutoUTFOutputStream -> OutputByteStream 69 AutoUTFOutputStream -> AutoUTF
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
D | stream.md | 130 …it is only known in runtime, you may use `AutoUTFInputStream` and `AutoUTFOutputStream`. These str… 216 ## AutoUTFOutputStream {#AutoUTFOutputStream} 218 Similarly, to choose encoding for output during runtime, we can use `AutoUTFOutputStream`. This cla… 227 typedef AutoUTFOutputStream<unsigned, FileWriteStream> OutputStream; 235 `AutoUTFInputStream` and `AutoUTFOutputStream` is more convenient than `EncodedInputStream` and `En…
|
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
D | encodedstreamtest.cpp | 203 AutoUTFOutputStream<unsigned, FileWriteStream> eos(os, type, putBOM); in TestAutoUTFOutputStream() 218 AutoUTFOutputStream<unsigned, MemoryBuffer> eos(mb, type, putBOM); in TestAutoUTFOutputStream() 299 TEST_F(EncodedStreamTest, AutoUTFOutputStream) { in TEST_F() argument
|
/packages/apps/Test/connectivity/sl4n/rapidjson/example/prettyauto/ |
D | prettyauto.cpp | 38 typedef AutoUTFOutputStream<unsigned, FileWriteStream> OutputStream; // NEW in main()
|