Home
last modified time | relevance | path

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

/lvgl-latest/src/libs/thorvg/rapidjson/
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.h146 Base::os_->Put('\n');
170 Base::os_->Put('\n');
215 Base::os_->Put(','); // add comma if it is not the first element in array in PrettyPrefix()
217 Base::os_->Put(' '); in PrettyPrefix()
221 Base::os_->Put('\n'); in PrettyPrefix()
228 Base::os_->Put(','); in PrettyPrefix()
229 Base::os_->Put('\n'); in PrettyPrefix()
232 Base::os_->Put(':'); in PrettyPrefix()
233 Base::os_->Put(' '); in PrettyPrefix()
237 Base::os_->Put('\n'); in PrettyPrefix()
Dstream.h92 stream.Put(c); in PutUnsafe()
128 void Put(Ch ch) { is_.Put(ch); } in Put() function
164 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function
199 void Put(Ch c) { RAPIDJSON_ASSERT(dst_ != 0); *dst_++ = c; }
Dencodedstream.h53 void Put(Ch) { RAPIDJSON_ASSERT(false); } in RAPIDJSON_DIAG_OFF()
82 void Put(Ch) {} in Put() function
110 void Put(Ch c) { Encoding::Put(os_, c); } in Put() function
161 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function
251 static const PutFunc f[] = { RAPIDJSON_ENCODINGS_FUNC(Put) }; in AutoUTFOutputStream()
260 void Put(Ch c) { putFunc_(*os_, c); } in Put() function
Dostreamwrapper.h50 void Put(Ch c) { in RAPIDJSON_DIAG_OFF()
Dmemorystream.h50 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function
Dmemorybuffer.h42 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() function
Dwriter.h455 bool WriteStartObject() { os_->Put('{'); return true; } in WriteStartObject()
456 bool WriteEndObject() { os_->Put('}'); return true; } in WriteEndObject()
457 bool WriteStartArray() { os_->Put('['); return true; } in WriteStartArray()
458 bool WriteEndArray() { os_->Put(']'); return true; } in WriteEndArray()
479 os_->Put(','); // add comma if it is not the first element in array in Prefix()
481 os_->Put((level->valueCount % 2 == 0) ? ',' : ':'); in Prefix()
Dfilereadstream.h55 void Put(Ch) { RAPIDJSON_ASSERT(false); } in RAPIDJSON_DIAG_OFF()
Dfilewritestream.h40 void Put(char c) { in Put() function
Distreamwrapper.h77 void Put(Ch) { RAPIDJSON_ASSERT(false); } in RAPIDJSON_DIAG_OFF()
Dpointer.h1061 os.Put('#'); in Stringify()
1064 os.Put('/'); in Stringify()
1068 os.Put('~'); in Stringify()
1069 os.Put('0'); in Stringify()
1072 os.Put('~'); in Stringify()
1073 os.Put('1'); in Stringify()
1084 os.Put(c); in Stringify()
1144 void Put(char c) { // UTF-8 must be byte in Put() function
1147 os_.Put('%'); in Put()
1148 os_.Put(static_cast<typename OutputStream::Ch>(hexDigits[u >> 4])); in Put()
[all …]
Dstringbuffer.h56 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() function
Dreader.h933 RAPIDJSON_FORCEINLINE void Put(Ch c) { in Put() function
1016 … os.Put(static_cast<typename TEncoding::Ch>(escape[static_cast<unsigned char>(e)])); in ParseStringToStream()
1020 os.Put('\''); in ParseStringToStream()
1051 os.Put('\0'); // null-terminate the string in ParseStringToStream()
1088 os.Put(*p++); in ScanCopyUnescapedString()
1245 os.Put(*p++); in ScanCopyUnescapedString()
1439 stackStream.Put(static_cast<StackCharacter>(Base::is.Peek())); in TakePush()
1444 stackStream.Put(c); in Push()
1450 stackStream.Put('\0'); in Pop()
1702 dstStream.Put('\0'); in ParseNumber()