type testing.chattyPrinter

6 uses

	testing (current package)
		testing.go#L338: type chattyPrinter struct {
		testing.go#L344: func newChattyPrinter(w io.Writer) *chattyPrinter {
		testing.go#L345: 	return &chattyPrinter{w: w}
		testing.go#L351: func (p *chattyPrinter) Updatef(testName, format string, args ...interface{}) {
		testing.go#L365: func (p *chattyPrinter) Printf(testName, format string, args ...interface{}) {
		testing.go#L399: 	chatty     *chattyPrinter // A copy of chattyPrinter, if the chatty flag is set.