Home | History | Annotate | Download | only in fmt

Lines Matching full:sprint

1076 	s := Sprint(slice)
1081 s = Sprint(slice)
1085 s = Sprint(&slice)
1109 s := Sprint(m0)
1116 presentInMap(Sprint(m1), a, t)
1118 if !strings.HasPrefix(Sprint(&m1), "&") {
1122 presentInMap(Sprint(&m1), a, t)
1128 s := Sprint(m)
1133 s = Sprint(m)
1139 // TestBlank checks that Sprint (and hence Print, Fprint) puts spaces in the
1142 got := Sprint("<", 1, ">:", 1, 2, 3, "!")
1159 // TestFormatterPrintln checks Formatter with Sprint, Sprintln, Sprintf.
1163 s := Sprint(f, "\n")
1165 t.Errorf("Sprint wrong with Formatter: expected %q got %q", expect, s)