Home | History | Annotate | Download | only in strconv

Lines Matching refs:Func

21 		fn    func()
23 {0, `AppendInt(localBuf[:0], 123, 10)`, func() {
27 {0, `AppendInt(globalBuf[:0], 123, 10)`, func() { AppendInt(globalBuf[:0], 123, 10) }},
28 {0, `AppendFloat(localBuf[:0], 1.23, 'g', 5, 64)`, func() {
32 {0, `AppendFloat(globalBuf[:0], 1.23, 'g', 5, 64)`, func() { AppendFloat(globalBuf[:0], 1.23, 'g', 5, 64) }},
33 {0, `ParseFloat("123.45", 64)`, func() { ParseFloat("123.45", 64) }},
34 {0, `ParseFloat("123.456789123456789", 64)`, func() { ParseFloat("123.456789123456789", 64) }},
35 {0, `ParseFloat("1.000000000000000111022302462515654042363166809082031251", 64)`, func() {
38 {0, `ParseFloat("1.0000000000000001110223024625156540423631668090820312500...001", 64)`, func() {
44 func TestCountMallocs(t *testing.T) {
59 func TestErrorPrefixes(t *testing.T) {
83 if got := nerr.Func; got != v.want {
84 t.Errorf("mismatching Func: got %s, want %s", got, v.want)