/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
H A D | writer.h | 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() 258 os_->Put('\"'); in WriteString() 308 os_->Put('\"'); in WriteString() [all …]
|
H A D | prettywriter.h | 100 Base::os_->Put('\n'); 107 Base::os_->Flush(); 124 Base::os_->Put('\n'); 131 Base::os_->Flush(); 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() 168 Base::os_->Put(' '); in PrettyPrefix() [all …]
|
H A D | encodedstream.h | 71 EncodedOutputStream(OutputByteStream& os, bool putBOM = true) : os_(os) { 73 Encoding::PutBOM(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
|
H A D | pointer.h | 990 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_;
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/ |
H A D | misctest.cpp | 360 Writer1() : os_() {} in Writer1() 364 os_ = &os; in Reset() 415 OutputStream* os_; member in Writer1 439 Writer2() : os_() {} in Writer2() 443 os_ = &os; in Reset() 512 OutputStream* os_; member in Writer2 519 Writer3() : os_() {} in Writer3() 523 os_ = &os; in Reset() 588 OutputStream* os_; member in Writer3 627 os_ = &os; in Reset() [all …]
|
/aosp12/art/libartbase/base/metrics/ |
H A D | metrics_common.cc | 94 std::string result = os_.str(); in GetAndResetBuffer() 95 os_.clear(); in GetAndResetBuffer() 96 os_.str(""); in GetAndResetBuffer() 105 os_ << "\n*** ART internal metrics ***\n"; in BeginReport() 106 os_ << " Metadata:\n"; in BeginReport() 116 os_ << " Metrics:\n"; in BeginReport() 131 os_ << ", buckets: "; in ReportHistogram() 135 os_ << ","; in ReportHistogram() 138 os_ << count; in ReportHistogram() 140 os_ << "\n"; in ReportHistogram() [all …]
|
H A D | metrics.h | 458 std::ostringstream os_;
|
/aosp12/art/imgdiag/ |
H A D | imgdiag.cc | 238 os_(*os), in RegionCommon() 255 os_ << "\n"; in DumpSamplesAndOffsetCount() 264 os_ << "\n"; in DumpSamplesAndOffsetCount() 387 os_(*os), in RegionSpecializedBase() 448 os_ << tabs in DiffEntryContents() 451 os_ << tabs in DiffEntryContents() 511 os_ << "\n"; in DiffEntryContents() 716 os_(*os) { in RegionSpecializedBase() 792 os_ << "\n"; in DiffEntryContents() 940 os_ << "\n"; in DumpOneArtMethod() [all …]
|
/aosp12/system/tools/aidl/ |
H A D | logging.cpp | 25 : os_(&std::cerr), severity_(severity), location_(location), suffix_(suffix) { in AidlErrorLog() 28 (*os_) << (severity_ == WARNING ? "WARNING: " : "ERROR: "); in AidlErrorLog() 29 (*os_) << location << ": "; in AidlErrorLog() 41 (*os_) << suffix_ << std::endl; in ~AidlErrorLog() 44 (*os_) << "Logging an internal location should not happen. Offending location: " << location_ in ~AidlErrorLog()
|
H A D | logging.h | 51 (*os_) << std::forward<T>(arg); 60 std::ostream* os_;
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
H A D | prettywritertest.cpp | 104 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
|
H A D | writertest.cpp | 147 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
|
/aosp12/art/cmdline/ |
H A D | cmdline.h | 184 os_ = out_.get(); in Parse() 251 std::ostream* os_ = &std::cout; member
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
H A D | stream.md | 337 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_;
|
/aosp12/art/runtime/ |
H A D | thread_list.cc | 194 : os_(os), in DumpCheckpoint() 218 *os_ << local_os.str() << std::endl; in Run() 236 std::ostream* const os_; member in art::DumpCheckpoint
|
/aosp12/art/runtime/gc/collector/ |
H A D | mark_sweep.cc | 607 explicit VerifyRootVisitor(std::ostream& os) : os_(os) {} in VerifyRootVisitor() 616 os_ << "Found invalid root: " << root << " " << info << std::endl; in VisitRoot() 622 std::ostream& os_; member in art::gc::collector::MarkSweep::VerifyRootVisitor
|
/aosp12/art/oatdump/ |
H A D | oatdump.cc | 1691 : os_(os), in ImageDumper() 1699 std::ostream& os = *os_; in Dump() 2376 std::ostream* os_; member in art::ImageDumper 3291 args_->os_) == EXIT_SUCCESS; in ExecuteWithoutRuntime() 3311 args_->os_) == EXIT_SUCCESS; in ExecuteWithRuntime() 3314 return DumpImages(runtime, oat_dumper_options_.get(), args_->os_) == EXIT_SUCCESS; in ExecuteWithRuntime()
|
/aosp12/frameworks/base/native/graphics/jni/fuzz/corpus/ |
H A D | sample_raf.raf | 1803 …�A���W8�s�?��HS��ֱ��O��RM�Џٽ��W�xO$�{o+�EF��&�����$���\��@�os_�3�۟���ݕ����>n… 33911 …D�b��b &?6a�Cb#�<J�a��a!�;f`zsa&<<fbsccF=�b��b&6=6cn�d <Fd��c�<�aya!<,�ax#c)6>#`os_�<
|