Lines Matching refs:comment
149 std::string comment; in print() local
150 base::StringAppendV(&comment, fmt, ap); in print()
153 stream_ << base::StringPrintf("%08zx: %02x", offset_, value) << " " << comment in print()
162 std::string comment; in print() local
163 base::StringAppendV(&comment, fmt, ap); in print()
166 stream_ << base::StringPrintf("%08zx: %04x", offset_, value) << " " << comment << std::endl; in print()
174 std::string comment; in print() local
175 base::StringAppendV(&comment, fmt, ap); in print()
178 stream_ << base::StringPrintf("%08zx: %08x", offset_, value) << " " << comment << std::endl; in print()
186 std::string comment; in print() local
187 base::StringAppendV(&comment, fmt, ap); in print()
190 stream_ << base::StringPrintf("%08zx: %08x", offset_, (uint32_t)value.size()) << " " << comment in print()
194 stream_ << base::StringPrintf("%08zx: ", offset_) << "........ " << comment; in print()