Home | History | Annotate | Download | only in fmt

Lines Matching full:sprint

1419 	s := Sprint(slice)
1424 s = Sprint(slice)
1428 s = Sprint(&slice)
1452 s := Sprint(m0)
1459 presentInMap(Sprint(m1), a, t)
1461 if !strings.HasPrefix(Sprint(&m1), "&") {
1465 presentInMap(Sprint(&m1), a, t)
1471 s := Sprint(m)
1476 s = Sprint(m)
1482 // TestBlank checks that Sprint (and hence Print, Fprint) puts spaces in the
1485 got := Sprint("<", 1, ">:", 1, 2, 3, "!")
1502 // TestFormatterPrintln checks Formatter with Sprint, Sprintln, Sprintf.
1506 s := Sprint(f, "\n")
1508 t.Errorf("Sprint wrong with Formatter: expected %q got %q", expect, s)