Home | History | Annotate | Download | only in fmt

Lines Matching refs:printArg

330 		p.printArg(p.arg, 'v', 0)
562 p.printArg(c, 'v', depth+1)
646 // Nested panics; the recursion in printArg cannot succeed.
654 p.printArg(err, 'v', 0)
724 p.printArg(v.Error(), verb, depth)
730 p.printArg(v.String(), verb, depth)
738 func (p *pp) printArg(arg interface{}, verb rune, depth int) (wasString bool) {
755 p.printArg(reflect.TypeOf(arg).String(), 's', 0)
816 // printValue is like printArg but starts with a reflect value, not an interface{} value.
831 p.printArg(value.Type().String(), 's', 0)
853 // printReflectValue is the fallback for both printArg and printValue.
1219 p.printArg(arg, c, 0)
1233 p.printArg(arg, 'v', 0)
1254 prevString = p.printArg(arg, 'v', 0)