Lines Matching refs:strm
17 void OptionValueArray::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue() argument
22 strm.Printf("(%s of %ss)", GetTypeAsCString(), in DumpValue()
25 strm.Printf("(%s)", GetTypeAsCString()); in DumpValue()
31 strm.Printf(" =%s", (m_values.size() > 0 && !one_line) ? "\n" : ""); in DumpValue()
33 strm.IndentMore(); in DumpValue()
36 strm.Indent(); in DumpValue()
37 strm.Printf("[%u]: ", i); in DumpValue()
47 m_values[i]->DumpValue(exe_ctx, strm, dump_mask | extra_dump_options); in DumpValue()
61 m_values[i]->DumpValue(exe_ctx, strm, (dump_mask & (~eDumpOptionType)) | in DumpValue()
68 strm.EOL(); in DumpValue()
70 strm << ' '; in DumpValue()
74 strm.IndentLess(); in DumpValue()