Searched refs:os_ (Results 1 – 4 of 4) sorted by relevance
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | writer.h | 103 …os_(&os), level_stack_(stackAllocator, levelDepth * sizeof(Level)), maxDecimalPlaces_(kDefaultMaxD… 107 …os_(0), level_stack_(allocator, levelDepth * sizeof(Level)), maxDecimalPlaces_(kDefaultMaxDecimalP… 111 …os_(rhs.os_), level_stack_(std::move(rhs.level_stack_)), maxDecimalPlaces_(rhs.maxDecimalPlaces_),… in Writer() 112 rhs.os_ = 0; in Writer() 135 os_ = &os; in Reset() 283 os_->Flush(); in Flush() 297 PutReserve(*os_, 4); in WriteNull() 298 …PutUnsafe(*os_, 'n'); PutUnsafe(*os_, 'u'); PutUnsafe(*os_, 'l'); PutUnsafe(*os_, 'l'); return tru… in WriteNull() 303 PutReserve(*os_, 4); in WriteBool() 304 PutUnsafe(*os_, 't'); PutUnsafe(*os_, 'r'); PutUnsafe(*os_, 'u'); PutUnsafe(*os_, 'e'); in WriteBool() [all …]
|
D | prettywriter.h | 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() [all …]
|
D | encodedstream.h | 105 EncodedOutputStream(OutputByteStream& os, bool putBOM = true) : os_(os) { in os_() function 107 Encoding::PutBOM(os_); in os_() 110 void Put(Ch c) { Encoding::Put(os_, c); } in Put() 111 void Flush() { os_.Flush(); } in Flush() 124 OutputByteStream& os_; variable 244 AutoUTFOutputStream(OutputByteStream& os, UTFType type, bool putBOM) : os_(&os), type_(type) { in AutoUTFOutputStream() 260 void Put(Ch c) { putFunc_(*os_, c); } in Put() 261 void Flush() { os_->Flush(); } in Flush() 277 f[type_](*os_); in PutBOM() 282 OutputByteStream* os_; variable
|
D | pointer.h | 1143 PercentEncodeStream(OutputStream& os) : os_(os) {} in PercentEncodeStream() 1147 os_.Put('%'); in Put() 1148 os_.Put(static_cast<typename OutputStream::Ch>(hexDigits[u >> 4])); in Put() 1149 os_.Put(static_cast<typename OutputStream::Ch>(hexDigits[u & 15])); in Put() 1152 OutputStream& os_;
|