Searched defs:stream (Results 1 - 25 of 28) sorted by relevance

12

/art/cmdline/detail/
H A Dcmdline_parser_detail.h94 std::stringstream stream; local
95 stream << value;
96 return stream.str();
103 std::stringstream stream; local
104 stream << "vector{";
107 stream << ToStringAny(value[i]);
110 stream << ',';
114 stream << "}";
115 return stream.str();
/art/cmdline/
H A Dmemory_representation.h62 std::ostream& operator<<(std::ostream& stream, Memory<kDivisor> memory) { argument
63 return stream << memory.Value << '*' << kDivisor;
H A Dcmdline_result.h78 static inline std::ostream& operator<<(std::ostream& stream, CmdlineResult::Status status) { argument
81 stream << "kSuccess";
84 stream << "kUsage";
87 stream << "kFailure";
90 stream << "kOutOfRange";
93 stream << "kUnknown";
98 return stream;
H A Dcmdline_types.h679 static inline std::ostream& operator<<(std::ostream& stream, const TestProfilerOptions& options) { argument
680 stream << "TestProfilerOptions {" << std::endl;
683 stream << #field << ": '" << options.field << "'" << std::endl;
697 stream << "}";
699 return stream;
/art/runtime/base/
H A Dhistogram_test.cc124 std::stringstream stream; local
126 hist->PrintConfidenceIntervals(stream, 0.99, data);
128 EXPECT_EQ(expected, stream.str());
167 std::stringstream stream; local
169 hist->PrintConfidenceIntervals(stream, 0.99, data);
171 EXPECT_EQ(expected, stream.str());
206 std::stringstream stream; local
208 hist->PrintConfidenceIntervals(stream, 0.99, data);
210 EXPECT_EQ(expected, stream.str());
221 std::stringstream stream; local
264 std::stringstream stream; local
[all...]
H A Dlogging.cc48 // host right now: for the device, a stream buf collating output into lines and calling LogLine or
191 stream() << ProgramInvocationShortName() << " " << kLogCharacters[static_cast<size_t>(severity)]
235 std::ostream& LogMessage::stream() { function in class:art::LogMessage
/art/runtime/
H A Dexperimental_flags.h65 inline std::ostream& operator<<(std::ostream& stream, const ExperimentalFlags& e) { argument
68 stream << (started ? "|" : "") << "kLambdas";
72 stream << "kNone";
74 return stream;
77 inline std::ostream& operator<<(std::ostream& stream, const decltype(ExperimentalFlags::kNone)& e) { argument
78 return stream << ExperimentalFlags(e);
H A Dparsed_options.cc239 .Define("-Xmethod-trace-stream")
610 void ParsedOptions::UsageMessageV(FILE* stream, const char* fmt, va_list ap) { argument
611 hook_vfprintf_(stream, fmt, ap);
614 void ParsedOptions::UsageMessage(FILE* stream, const char* fmt, ...) { argument
617 UsageMessageV(stream, fmt, ap);
623 FILE* stream = error ? stderr : stdout; local
628 UsageMessageV(stream, fmt, ap);
633 UsageMessage(stream, "%s: [options] class [argument ...]\n", program);
634 UsageMessage(stream, "\n");
635 UsageMessage(stream, "Th
[all...]
H A Dstack_map.cc30 std::ostream& operator<<(std::ostream& stream, const DexRegisterLocation::Kind& kind) { argument
34 return stream << "none";
36 return stream << "in stack";
38 return stream << "in register";
40 return stream << "in register high";
42 return stream << "in fpu register";
44 return stream << "in fpu register high";
46 return stream << "as constant";
48 return stream << "in stack (large offset)";
50 return stream << "a
[all...]
H A Doat_file_assistant.cc47 std::ostream& operator << (std::ostream& stream, const OatFileAssistant::OatStatus status) { argument
50 stream << "kOatOutOfDate";
53 stream << "kOatUpToDate";
56 stream << "kOatNeedsRelocation";
62 return stream;
H A Ddex_file.cc854 const uint8_t* stream = GetDebugInfoStream(code_item); local
855 if (stream == nullptr) {
873 DecodeUnsignedLeb128(&stream); // Line.
874 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
878 LOG(ERROR) << "invalid stream - arg reg >= reg size (" << arg_reg
882 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream);
901 LOG(ERROR) << "invalid stream - problem with parameter iterator in " << GetLocation()
908 uint8_t opcode = *stream++;
920 address += DecodeUnsignedLeb128(&stream);
923 DecodeSignedLeb128(&stream); // Lin
1005 const uint8_t* stream = GetDebugInfoStream(code_item); local
[all...]
H A Dutils.cc1043 FILE* stream = popen(cmd.c_str(), "r"); local
1044 if (stream) {
1051 while (!feof(stream)) {
1052 if (fgets(buffer, kMaxBuffer, stream) != nullptr) {
1082 pclose(stream);
/art/tools/dexfuzz/src/dexfuzz/
H A DStreamConsumer.java65 public void giveStreamAndStartConsuming(InputStream stream) { argument
68 reader = new BufferedReader(new InputStreamReader(stream));
/art/compiler/
H A Dcfi_test.h62 std::stringstream stream; local
64 disasm->Dump(stream, base, base + actual_asm.size());
65 ReformatAsm(&stream, &lines);
83 static void ReformatAsm(std::stringstream* stream, argument
86 while (std::getline(*stream, line)) {
/art/compiler/jit/
H A Djit_compiler.cc224 std::ostringstream stream; local
225 stream << std::hex
232 std::string str = stream.str();
/art/runtime/gc/accounting/
H A Dspace_bitmap-inl.h186 inline std::ostream& operator << (std::ostream& stream, const SpaceBitmap<kAlignment>& bitmap) { argument
187 return stream
/art/runtime/lambda/
H A Dshorty_field_type_test.cc53 std::stringstream stream; local
55 stream << "[";
57 stream << val << ", ";
59 stream << "]";
61 return stream.str();
68 std::stringstream stream; local
72 stream << "Expected list size: " << expected.size()
74 stream << std::endl;
80 stream << "Expected element '" << j << "' to be '" << expected[j] << "', but got actual: '"
82 stream << st
[all...]
/art/compiler/debug/
H A Delf_debug_info_writer.h50 const uint8_t* stream = mi->dex_file->GetDebugInfoStream(mi->code_item); local
51 if (stream != nullptr) {
52 DecodeUnsignedLeb128(&stream); // line.
53 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
55 uint32_t id = DecodeUnsignedLeb128P1(&stream);
/art/compiler/optimizing/
H A Dgraph_visualizer.cc289 void DumpLocation(std::ostream& stream, const Location& location) { argument
291 codegen_.DumpCoreRegister(stream, location.reg());
293 codegen_.DumpFloatingPointRegister(stream, location.reg());
295 stream << "#";
298 stream << constant->AsIntConstant()->GetValue();
300 stream << constant->AsLongConstant()->GetValue();
303 stream << "invalid";
305 stream << location.GetStackIndex() << "(sp)";
307 codegen_.DumpFloatingPointRegister(stream, location.low());
308 stream << "|";
[all...]
H A Dregister_allocator.cc567 void RegisterAllocator::DumpInterval(std::ostream& stream, LiveInterval* interval) const { argument
568 interval->Dump(stream);
569 stream << ": ";
572 codegen_->DumpFloatingPointRegister(stream, interval->GetRegister());
574 codegen_->DumpCoreRegister(stream, interval->GetRegister());
577 stream << "spilled";
579 stream << std::endl;
582 void RegisterAllocator::DumpAllIntervals(std::ostream& stream) const {
583 stream << "inactive: " << std::endl;
585 DumpInterval(stream, inactive_interva
[all...]
H A Dcode_generator_mips64.cc949 void CodeGeneratorMIPS64::DumpCoreRegister(std::ostream& stream, int reg) const { argument
950 stream << GpuRegister(reg);
953 void CodeGeneratorMIPS64::DumpFloatingPointRegister(std::ostream& stream, int reg) const { argument
954 stream << FpuRegister(reg);
H A Dcode_generator_arm64.cc1148 void CodeGeneratorARM64::DumpCoreRegister(std::ostream& stream, int reg) const { argument
1149 stream << XRegister(reg);
1152 void CodeGeneratorARM64::DumpFloatingPointRegister(std::ostream& stream, int reg) const { argument
1153 stream << DRegister(reg);
H A Dcode_generator_mips.cc1056 void CodeGeneratorMIPS::DumpCoreRegister(std::ostream& stream, int reg) const { argument
1057 stream << Register(reg);
1060 void CodeGeneratorMIPS::DumpFloatingPointRegister(std::ostream& stream, int reg) const { argument
1061 stream << FRegister(reg);
H A Dcode_generator_arm.cc734 void CodeGeneratorARM::DumpCoreRegister(std::ostream& stream, int reg) const { argument
735 stream << Register(reg);
738 void CodeGeneratorARM::DumpFloatingPointRegister(std::ostream& stream, int reg) const { argument
739 stream << SRegister(reg);
/art/runtime/gc/allocator/
H A Drosalloc.cc865 std::ostringstream stream; local
866 stream << "RosAlloc Run = " << reinterpret_cast<void*>(this)
875 return stream.str();
1213 std::ostringstream stream; local
1214 stream << "RosAlloc PageMap: " << std::endl;
1238 stream << "[" << i << "]=" << (pm == kPageMapReleased ? "Released" : "Empty")
1246 stream << "curr_fpr=0x" << std::hex << reinterpret_cast<intptr_t>(curr_fpr) << std::endl;
1255 stream << "[" << i << "]=Empty (FPR part)"
1269 stream << "[" << i << "]=Large (start)" << std::endl;
1275 stream << "[" <<
[all...]

Completed in 535 milliseconds

12