Lines Matching refs:ostream
440 llvm::raw_ostream &ostream = s->AsRawOstream(); in Dump() local
441 ostream << static_cast<void *>(this) << ": "; in Dump()
443 ostream << "ObjectFileWasm, file = '"; in Dump()
444 m_file.Dump(ostream); in Dump()
445 ostream << "', arch = "; in Dump()
446 ostream << GetArchitecture().GetArchitectureName() << "\n"; in Dump()
453 ostream << "\n"; in Dump()
454 DumpSectionHeaders(ostream); in Dump()
455 ostream << "\n"; in Dump()
458 void ObjectFileWasm::DumpSectionHeader(llvm::raw_ostream &ostream, in DumpSectionHeader() argument
460 ostream << llvm::left_justify(sh.name.GetStringRef(), 16) << " " in DumpSectionHeader()
466 void ObjectFileWasm::DumpSectionHeaders(llvm::raw_ostream &ostream) { in DumpSectionHeaders() argument
467 ostream << "Section Headers\n"; in DumpSectionHeaders()
468 ostream << "IDX name addr size id\n"; in DumpSectionHeaders()
469 ostream << "==== ---------------- ---------- ---------- ------\n"; in DumpSectionHeaders()
474 ostream << "[" << llvm::format_decimal(idx, 2) << "] "; in DumpSectionHeaders()
475 ObjectFileWasm::DumpSectionHeader(ostream, *pos); in DumpSectionHeaders()