/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
D | writer.h | 191 os_->Put('n'); os_->Put('u'); os_->Put('l'); os_->Put('l'); return true; in WriteNull() 196 os_->Put('t'); os_->Put('r'); os_->Put('u'); os_->Put('e'); in WriteBool() 199 os_->Put('f'); os_->Put('a'); os_->Put('l'); os_->Put('s'); os_->Put('e'); in WriteBool() 208 os_->Put(*p); in WriteInt() 216 os_->Put(*p); in WriteUint() 224 os_->Put(*p); in WriteInt64() 232 os_->Put(*p); in WriteUint64() 240 os_->Put(*p); in WriteDouble() 258 os_->Put('\"'); in WriteString() 267 os_->Put('\\'); in WriteString() [all …]
|
D | encodings.h | 104 os.Put(static_cast<Ch>(codepoint & 0xFF)); in Encode() 106 os.Put(static_cast<Ch>(0xC0 | ((codepoint >> 6) & 0xFF))); in Encode() 107 os.Put(static_cast<Ch>(0x80 | ((codepoint & 0x3F)))); in Encode() 110 os.Put(static_cast<Ch>(0xE0 | ((codepoint >> 12) & 0xFF))); in Encode() 111 os.Put(static_cast<Ch>(0x80 | ((codepoint >> 6) & 0x3F))); in Encode() 112 os.Put(static_cast<Ch>(0x80 | (codepoint & 0x3F))); in Encode() 116 os.Put(static_cast<Ch>(0xF0 | ((codepoint >> 18) & 0xFF))); in Encode() 117 os.Put(static_cast<Ch>(0x80 | ((codepoint >> 12) & 0x3F))); in Encode() 118 os.Put(static_cast<Ch>(0x80 | ((codepoint >> 6) & 0x3F))); in Encode() 119 os.Put(static_cast<Ch>(0x80 | (codepoint & 0x3F))); in Encode() [all …]
|
D | prettywriter.h | 100 Base::os_->Put('\n'); 124 Base::os_->Put('\n'); 153 Base::os_->Put(','); // add comma if it is not the first element in array in PrettyPrefix() 154 Base::os_->Put('\n'); in PrettyPrefix() 157 Base::os_->Put('\n'); in PrettyPrefix() 163 Base::os_->Put(','); in PrettyPrefix() 164 Base::os_->Put('\n'); in PrettyPrefix() 167 Base::os_->Put(':'); in PrettyPrefix() 168 Base::os_->Put(' '); in PrettyPrefix() 172 Base::os_->Put('\n'); in PrettyPrefix()
|
D | encodedstream.h | 47 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function 76 void Put(Ch c) { Encoding::Put(os_, c); } in Put() function 127 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function 217 static const PutFunc f[] = { RAPIDJSON_ENCODINGS_FUNC(Put) }; in AutoUTFOutputStream() 226 void Put(Ch c) { putFunc_(*os_, c); } in Put() function
|
D | pointer.h | 910 os.Put('#'); in Stringify() 913 os.Put('/'); in Stringify() 917 os.Put('~'); in Stringify() 918 os.Put('0'); in Stringify() 921 os.Put('~'); in Stringify() 922 os.Put('1'); in Stringify() 933 os.Put(c); in Stringify() 991 void Put(char c) { // UTF-8 must be byte in Put() function 994 os_.Put('%'); in Put() 995 os_.Put(hexDigits[u >> 4]); in Put() [all …]
|
D | rapidjson.h | 561 stream.Put(c); 581 void Put(Ch) { RAPIDJSON_ASSERT(false); } 616 void Put(Ch c) { RAPIDJSON_ASSERT(dst_ != 0); *dst_++ = c; }
|
D | reader.h | 618 RAPIDJSON_FORCEINLINE void Put(Ch c) { in Put() function 688 os.Put(escape[(unsigned char)e]); in ParseStringToStream() 710 os.Put('\0'); // null-terminate the string in ParseStringToStream() 756 stackStream.Put((char)Base::is.Peek()); in TakePush() 763 stackStream.Put('\0'); in Pop()
|
D | memorystream.h | 44 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function
|
D | memorybuffer.h | 42 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() function
|
D | filereadstream.h | 48 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function
|
D | filewritestream.h | 35 void Put(char c) { in Put() function
|
D | stringbuffer.h | 50 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() function
|
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
D | stringbuffertest.cpp | 27 TEST(StringBuffer, Put) { in TEST() argument 29 buffer.Put('A'); in TEST() 37 buffer.Put('A'); in TEST() 38 buffer.Put('B'); in TEST() 39 buffer.Put('C'); in TEST() 59 buffer.Put('A'); in TEST() 60 buffer.Put('B'); in TEST() 61 buffer.Put('C'); in TEST() 62 buffer.Put('D'); in TEST() 63 buffer.Put('E'); in TEST() [all …]
|
D | filestreamtest.cpp | 93 os.Put(json_[i]); in TEST_F()
|
D | prettywritertest.cpp | 111 void Put(Ch c) { os_.put(c); } in Put() function in OStreamWrapper
|
D | writertest.cpp | 154 void Put(Ch c) { os_.put(c); } in Put() function in OStreamWrapper
|
D | readertest.cpp | 982 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function in CustomStringStream 1038 void Put(Ch) { assert(false); } in Put() function in IStreamWrapper
|
D | documenttest.cpp | 245 void Put(char c) { in Put() function
|
/packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/ |
D | misctest.cpp | 369 os_->Put('-'); in WriteInt() 385 os_->Put(*p); in WriteUint() 392 os_->Put('-'); in WriteInt64() 409 os_->Put(*p); in WriteUint64() 448 os_->Put('-'); in WriteInt() 473 os_->Put(*p); in WriteUint() 480 os_->Put('-'); in WriteInt64() 506 os_->Put(*p); in WriteUint64() 528 os_->Put('-'); in WriteInt() 544 os_->Put(*p); in WriteUint() [all …]
|
D | rapidjsontest.cpp | 254 void Put(char) { /*++length_;*/ } in Put() function
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
D | stream.md | 262 void Put(Ch c); 275 For output stream, they must implement `Put()` and `Flush()`. 303 void Put(Ch) { assert(false); } 345 void Put(Ch c) { os_.put(c); } // 1
|
/packages/apps/TV/ |
D | README.md | 12 2. Put this project under Android platform repository if required.
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | lv_wordlist.combined.gz | 1dictionary=main:lv,locale=lv,description=Latviešu,date=1393228136, ... |
D | fr_wordlist.combined.gz | 1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ... |
D | fi_wordlist.combined.gz | 1dictionary=main:fi,locale=fi,description=Suomi,date=1393228135, ... |