Searched refs:Put (Results 1 – 14 of 14) sorted by relevance
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 …]
146 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()
92 stream.Put(c); in PutUnsafe()128 void Put(Ch ch) { is_.Put(ch); } in Put() function164 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function199 void Put(Ch c) { RAPIDJSON_ASSERT(dst_ != 0); *dst_++ = c; }
53 void Put(Ch) { RAPIDJSON_ASSERT(false); } in RAPIDJSON_DIAG_OFF()82 void Put(Ch) {} in Put() function110 void Put(Ch c) { Encoding::Put(os_, c); } in Put() function161 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function251 static const PutFunc f[] = { RAPIDJSON_ENCODINGS_FUNC(Put) }; in AutoUTFOutputStream()260 void Put(Ch c) { putFunc_(*os_, c); } in Put() function
50 void Put(Ch c) { in RAPIDJSON_DIAG_OFF()
50 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put() function
42 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() function
455 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()
55 void Put(Ch) { RAPIDJSON_ASSERT(false); } in RAPIDJSON_DIAG_OFF()
40 void Put(char c) { in Put() function
77 void Put(Ch) { RAPIDJSON_ASSERT(false); } in RAPIDJSON_DIAG_OFF()
1061 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() function1147 os_.Put('%'); in Put()1148 os_.Put(static_cast<typename OutputStream::Ch>(hexDigits[u >> 4])); in Put()[all …]
56 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() function
933 RAPIDJSON_FORCEINLINE void Put(Ch c) { in Put() function1016 … 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()