Home | History | Annotate | Download | only in go1

Lines Matching refs:buf

16 	var buf bytes.Buffer
18 fmt.Fprintf(&buf, "")
23 var buf bytes.Buffer
25 buf.Reset()
26 fmt.Fprintf(&buf, "%s", "hello")
31 var buf bytes.Buffer
33 buf.Reset()
34 fmt.Fprintf(&buf, "%d", 5)
39 var buf bytes.Buffer
41 buf.Reset()
42 fmt.Fprintf(&buf, "%d %d", 5, 6)
47 var buf bytes.Buffer
49 buf.Reset()
50 fmt.Fprintf(&buf, "This is some meaningless prefix text that needs to be scanned %d", 6)
55 var buf bytes.Buffer
57 buf.Reset()
58 fmt.Fprintf(&buf, "%g", 5.23184)
63 var buf bytes.Buffer
65 buf.Reset()
66 fmt.Fprintf(&buf, "%2d/%2d/%2d %d:%d:%d %s %s\n", 3, 4, 5, 11, 12, 13, "hello", "world")