Home
last modified time | relevance | path

Searched refs:os_ (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
Dwriter.h65 os_(&os), level_stack_(stackAllocator, levelDepth * sizeof(Level)), hasRoot_(false) {}
69 os_(0), level_stack_(allocator, levelDepth * sizeof(Level)), hasRoot_(false) {}
90 os_ = &os; in Reset()
149 os_->Flush();
166 os_->Flush();
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()
[all …]
Dprettywriter.h100 Base::os_->Put('\n');
107 Base::os_->Flush();
124 Base::os_->Put('\n');
131 Base::os_->Flush();
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()
[all …]
Dencodedstream.h71 EncodedOutputStream(OutputByteStream& os, bool putBOM = true) : os_(os) { in os_() function
73 Encoding::PutBOM(os_); in os_()
76 void Put(Ch c) { Encoding::Put(os_, c); } in Put()
77 void Flush() { os_.Flush(); } in Flush()
90 OutputByteStream& os_; variable
210 AutoUTFOutputStream(OutputByteStream& os, UTFType type, bool putBOM) : os_(&os), type_(type) { in AutoUTFOutputStream()
226 void Put(Ch c) { putFunc_(*os_, c); } in Put()
227 void Flush() { os_->Flush(); } in Flush()
243 f[type_](*os_); in PutBOM()
248 OutputByteStream* os_; variable
Dpointer.h990 PercentEncodeStream(OutputStream& os) : os_(os) {} in PercentEncodeStream()
994 os_.Put('%'); in Put()
995 os_.Put(hexDigits[u >> 4]); in Put()
996 os_.Put(hexDigits[u & 15]); in Put()
999 OutputStream& os_;
/packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
Dmisctest.cpp360 Writer1() : os_() {} in Writer1()
361 Writer1(OutputStream& os) : os_(&os) {} in Writer1()
364 os_ = &os; in Reset()
369 os_->Put('-'); in WriteInt()
385 os_->Put(*p); in WriteUint()
392 os_->Put('-'); in WriteInt64()
409 os_->Put(*p); in WriteUint64()
415 OutputStream* os_; member in Writer1
427 char* d = os_->Push(p - buffer); in WriteUint()
439 Writer2() : os_() {} in Writer2()
[all …]
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
Dprettywritertest.cpp104 OStreamWrapper(std::ostream& os) : os_(os) {} in OStreamWrapper()
111 void Put(Ch c) { os_.put(c); } in Put()
112 void Flush() { os_.flush(); } in Flush()
119 std::ostream& os_; member in OStreamWrapper
Dwritertest.cpp147 OStreamWrapper(std::ostream& os) : os_(os) {} in OStreamWrapper()
154 void Put(Ch c) { os_.put(c); } in Put()
155 void Flush() { os_.flush(); } in Flush()
162 std::ostream& os_; member in OStreamWrapper
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Dstream.md337 OStreamWrapper(std::ostream& os) : os_(os) {
345 void Put(Ch c) { os_.put(c); } // 1
346 void Flush() { os_.flush(); } // 2
353 std::ostream& os_;