Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:strm

23 OptionValueArray::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask)
29 strm.Printf ("(%s of %ss)", GetTypeAsCString(), GetBuiltinTypeAsCString(array_element_type));
31 strm.Printf ("(%s)", GetTypeAsCString());
36 strm.Printf (" =%s", (m_values.size() > 0) ? "\n" : "");
37 strm.IndentMore();
41 strm.Indent();
42 strm.Printf("[%u]: ", i);
52 m_values[i]->DumpValue(exe_ctx, strm, dump_mask | extra_dump_options);
64 m_values[i]->DumpValue(exe_ctx, strm, (dump_mask & (~eDumpOptionType)) | extra_dump_options);
68 strm.EOL();
70 strm.IndentLess();