Home
last modified time | relevance | path

Searched refs:Put (Results 1 – 25 of 25) sorted by relevance

/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
Dwriter.h191 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 …]
Dencodings.h104 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 …]
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 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()
Dencodedstream.h47 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
Dpointer.h910 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 …]
Drapidjson.h561 stream.Put(c);
581 void Put(Ch) { RAPIDJSON_ASSERT(false); }
616 void Put(Ch c) { RAPIDJSON_ASSERT(dst_ != 0); *dst_++ = c; }
Dreader.h618 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()
Dmemorystream.h44 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function
Dmemorybuffer.h42 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() function
Dfilereadstream.h48 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function
Dfilewritestream.h35 void Put(char c) { in Put() function
Dstringbuffer.h50 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() function
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
Dstringbuffertest.cpp27 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 …]
Dfilestreamtest.cpp93 os.Put(json_[i]); in TEST_F()
Dprettywritertest.cpp111 void Put(Ch c) { os_.put(c); } in Put() function in OStreamWrapper
Dwritertest.cpp154 void Put(Ch c) { os_.put(c); } in Put() function in OStreamWrapper
Dreadertest.cpp982 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function in CustomStringStream
1038 void Put(Ch) { assert(false); } in Put() function in IStreamWrapper
Ddocumenttest.cpp245 void Put(char c) { in Put() function
/packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
Dmisctest.cpp369 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 …]
Drapidjsontest.cpp254 void Put(char) { /*++length_;*/ } in Put() function
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Dstream.md262 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/
Dopen_source_project.README10 3. Put this project under Android platform repository if required.
/packages/inputmethods/LatinIME/dictionaries/
Dlv_wordlist.combined.gz
Dfr_wordlist.combined.gz1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ...
Dfi_wordlist.combined.gz1dictionary=main:fi,locale=fi,description=Suomi,date=1393228135, ...