Lines Matching refs:strm
22 Stream &strm, uint32_t dump_mask) { in DumpValue() argument
26 strm.Printf("(%s of %ss)", GetTypeAsCString(), in DumpValue()
29 strm.Printf("(%s)", GetTypeAsCString()); in DumpValue()
34 strm.PutCString(" ="); in DumpValue()
39 strm.IndentMore(); in DumpValue()
45 strm << ' '; in DumpValue()
47 strm.EOL(); in DumpValue()
49 strm.Indent(pos->first.GetStringRef()); in DumpValue()
59 strm.PutChar(' '); in DumpValue()
60 option_value->DumpValue(exe_ctx, strm, dump_mask | extra_dump_options); in DumpValue()
74 strm.PutCString("="); in DumpValue()
75 option_value->DumpValue(exe_ctx, strm, in DumpValue()
82 strm.IndentLess(); in DumpValue()
90 StreamString strm; in GetArgs() local
91 strm.Printf("%s=", pos->first.GetCString()); in GetArgs()
92 pos->second->DumpValue(nullptr, strm, eDumpOptionValue | eDumpOptionRaw); in GetArgs()
93 args.AppendArgument(strm.GetString()); in GetArgs()