Searched refs:Put (Results 1 - 20 of 20) sorted by relevance

/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
H A Dstringbuffertest.cpp27 TEST(StringBuffer, Put) {
29 buffer.Put('A');
37 buffer.Put('A');
38 buffer.Put('B');
39 buffer.Put('C');
59 buffer.Put('A');
60 buffer.Put('B');
61 buffer.Put('C');
62 buffer.Put('D');
63 buffer.Put('
[all...]
H A Dfilestreamtest.cpp93 os.Put(json_[i]);
H A Dprettywritertest.cpp111 void Put(Ch c) { os_.put(c); } function in class:OStreamWrapper
H A Dwritertest.cpp154 void Put(Ch c) { os_.put(c); } function in class:OStreamWrapper
H A Ddocumenttest.cpp245 void Put(char c) { function in struct:OutputStringStream
H A Dreadertest.cpp982 void Put(Ch) { RAPIDJSON_ASSERT(false); } function in class:CustomStringStream
1038 void Put(Ch) { assert(false); } function in class:IStreamWrapper
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
H A Dwriter.h191 os_->Put('n'); os_->Put('u'); os_->Put('l'); os_->Put('l'); return true;
196 os_->Put('t'); os_->Put('r'); os_->Put('u'); os_->Put('e');
199 os_->Put('f'); os_->Put('
[all...]
H A Dencodings.h75 //! Put BOM to output byte stream.
79 //! Put a character to output byte stream.
81 static void Put(OutputByteStream& os, Ch c);
104 os.Put(static_cast<Ch>(codepoint & 0xFF));
106 os.Put(static_cast<Ch>(0xC0 | ((codepoint >> 6) & 0xFF)));
107 os.Put(static_cast<Ch>(0x80 | ((codepoint & 0x3F))));
110 os.Put(static_cast<Ch>(0xE0 | ((codepoint >> 12) & 0xFF)));
111 os.Put(static_cast<Ch>(0x80 | ((codepoint >> 6) & 0x3F)));
112 os.Put(static_cast<Ch>(0x80 | (codepoint & 0x3F)));
116 os.Put(static_cas
222 static void Put(OutputByteStream& os, Ch c) { function in struct:UTF8
321 static void Put(OutputByteStream& os, CharType c) { function in struct:UTF16LE
353 static void Put(OutputByteStream& os, CharType c) { function in struct:UTF16BE
429 static void Put(OutputByteStream& os, CharType c) { function in struct:UTF32LE
465 static void Put(OutputByteStream& os, CharType c) { function in struct:UTF32BE
528 static void Put(OutputByteStream& os, Ch c) { function in struct:ASCII
[all...]
H A Dprettywriter.h100 Base::os_->Put('\n');
124 Base::os_->Put('\n');
153 Base::os_->Put(','); // add comma if it is not the first element in array
154 Base::os_->Put('\n');
157 Base::os_->Put('\n');
163 Base::os_->Put(',');
164 Base::os_->Put('\n');
167 Base::os_->Put(':');
168 Base::os_->Put(' ');
172 Base::os_->Put('\
[all...]
H A Dmemorystream.h44 void Put(Ch) { RAPIDJSON_ASSERT(false); } function in struct:MemoryStream
H A Dencodedstream.h47 void Put(Ch) { RAPIDJSON_ASSERT(false); } function in class:EncodedInputStream
76 void Put(Ch c) { Encoding::Put(os_, c); } function in class:EncodedOutputStream
127 void Put(Ch) { RAPIDJSON_ASSERT(false); } function in class:AutoUTFInputStream
217 static const PutFunc f[] = { RAPIDJSON_ENCODINGS_FUNC(Put) };
226 void Put(Ch c) { putFunc_(*os_, c); } function in class:AutoUTFOutputStream
H A Dfilereadstream.h48 void Put(Ch) { RAPIDJSON_ASSERT(false); } function in class:FileReadStream
H A Dfilewritestream.h35 void Put(char c) { function in class:FileWriteStream
H A Dmemorybuffer.h42 void Put(Ch c) { *stack_.template Push<Ch>() = c; } function in struct:GenericMemoryBuffer
H A Dstringbuffer.h50 void Put(Ch c) { *stack_.template Push<Ch>() = c; } function in class:GenericStringBuffer
H A Drapidjson.h505 For read-only stream, no need to implement PutBegin(), Put(), Flush() and PutEnd().
507 For write-only stream, only need to implement Put() and Flush().
528 void Put(Ch c);
557 //! Put N copies of a character to a stream.
561 stream.Put(c);
581 void Put(Ch) { RAPIDJSON_ASSERT(false); } function in struct:GenericStringStream
616 void Put(Ch c) { RAPIDJSON_ASSERT(dst_ != 0); *dst_++ = c; } function in struct:GenericInsituStringStream
H A Dpointer.h910 os.Put('#');
913 os.Put('/');
917 os.Put('~');
918 os.Put('0');
921 os.Put('~');
922 os.Put('1');
933 os.Put(c);
991 void Put(char c) { // UTF-8 must be byte function in class:GenericPointer::PercentEncodeStream
994 os_.Put('%');
995 os_.Put(hexDigit
[all...]
H A Dreader.h618 RAPIDJSON_FORCEINLINE void Put(Ch c) { function in class:GenericReader::StackStream
688 os.Put(escape[(unsigned char)e]);
710 os.Put('\0'); // null-terminate the string
756 stackStream.Put((char)Base::is.Peek());
763 stackStream.Put('\0');
/packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
H A Dmisctest.cpp369 os_->Put('-');
385 os_->Put(*p);
392 os_->Put('-');
409 os_->Put(*p);
448 os_->Put('-');
473 os_->Put(*p);
480 os_->Put('-');
506 os_->Put(*p);
528 os_->Put('-');
544 os_->Put(*
[all...]
H A Drapidjsontest.cpp254 void Put(char) { /*++length_;*/ } function in struct:NullStream

Completed in 260 milliseconds