Lines Matching refs:dump_options

272     const StringPrinter::ReadBufferAndDumpToStreamOptions &dump_options) {  in DumpUTFBufferToStream()  argument
273 Stream &stream(*dump_options.GetStream()); in DumpUTFBufferToStream()
274 if (dump_options.GetPrefixToken() != 0) in DumpUTFBufferToStream()
275 stream.Printf("%s", dump_options.GetPrefixToken()); in DumpUTFBufferToStream()
276 if (dump_options.GetQuote() != 0) in DumpUTFBufferToStream()
277 stream.Printf("%c", dump_options.GetQuote()); in DumpUTFBufferToStream()
278 auto data(dump_options.GetData()); in DumpUTFBufferToStream()
279 auto source_size(dump_options.GetSourceSize()); in DumpUTFBufferToStream()
282 if (dump_options.GetSourceSize() == 0) { in DumpUTFBufferToStream()
291 const bool zero_is_terminator = dump_options.GetBinaryZeroIsTerminator(); in DumpUTFBufferToStream()
330 const bool escape_non_printables = dump_options.GetEscapeNonPrintables(); in DumpUTFBufferToStream()
333 if (Language *language = Language::FindPlugin(dump_options.GetLanguage())) in DumpUTFBufferToStream()
373 if (dump_options.GetQuote() != 0) in DumpUTFBufferToStream()
374 stream.Printf("%c", dump_options.GetQuote()); in DumpUTFBufferToStream()
375 if (dump_options.GetSuffixToken() != 0) in DumpUTFBufferToStream()
376 stream.Printf("%s", dump_options.GetSuffixToken()); in DumpUTFBufferToStream()
377 if (dump_options.GetIsTruncated()) in DumpUTFBufferToStream()
581 StringPrinter::ReadBufferAndDumpToStreamOptions dump_options(options); in ReadUTFBufferAndDumpToStream() local
582 dump_options.SetData(data); in ReadUTFBufferAndDumpToStream()
583 dump_options.SetSourceSize(sourceSize); in ReadUTFBufferAndDumpToStream()
584 dump_options.SetIsTruncated(is_truncated); in ReadUTFBufferAndDumpToStream()
586 return DumpUTFBufferToStream(ConvertFunction, dump_options); in ReadUTFBufferAndDumpToStream()