Searched refs:os_ (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
H A 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;
149 os_->Flush();
166 os_->Flush();
191 os_->Put('n'); os_->Put('u'); os_->Put('l'); os_->Put('l'); return true;
196 os_
337 OutputStream* os_; member in class:Writer
[all...]
H A 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
154 Base::os_->Put('\n');
157 Base::os_->Put('\n');
163 Base::os_->Put(',');
164 Base::os_->Put('\n');
167 Base::os_
[all...]
H A Dencodedstream.h71 EncodedOutputStream(OutputByteStream& os, bool putBOM = true) : os_(os) {
73 Encoding::PutBOM(os_);
76 void Put(Ch c) { Encoding::Put(os_, c); }
77 void Flush() { os_.Flush(); }
90 OutputByteStream& os_; member in class:EncodedOutputStream
210 AutoUTFOutputStream(OutputByteStream& os, UTFType type, bool putBOM) : os_(&os), type_(type) {
226 void Put(Ch c) { putFunc_(*os_, c); }
227 void Flush() { os_->Flush(); }
243 f[type_](*os_);
248 OutputByteStream* os_; member in class:AutoUTFOutputStream
[all...]
H A Dpointer.h990 PercentEncodeStream(OutputStream& os) : os_(os) {}
994 os_.Put('%');
995 os_.Put(hexDigits[u >> 4]);
996 os_.Put(hexDigits[u & 15]);
999 OutputStream& os_; member in class:GenericPointer::PercentEncodeStream
/packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
H A Dmisctest.cpp360 Writer1() : os_() {}
361 Writer1(OutputStream& os) : os_(&os) {}
364 os_ = &os;
369 os_->Put('-');
385 os_->Put(*p);
392 os_->Put('-');
409 os_->Put(*p);
415 OutputStream* os_; member in class:Writer1
427 char* d = os_->Push(p - buffer);
439 Writer2() : os_() {}
512 OutputStream* os_; member in class:Writer2
588 OutputStream* os_; member in class:Writer3
730 OutputStream* os_; member in class:Writer4
[all...]
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
H A Dprettywritertest.cpp104 OStreamWrapper(std::ostream& os) : os_(os) {}
111 void Put(Ch c) { os_.put(c); }
112 void Flush() { os_.flush(); }
119 std::ostream& os_; member in class:OStreamWrapper
H A Dwritertest.cpp147 OStreamWrapper(std::ostream& os) : os_(os) {}
154 void Put(Ch c) { os_.put(c); }
155 void Flush() { os_.flush(); }
162 std::ostream& os_; member in class:OStreamWrapper

Completed in 60 milliseconds