Lines Matching refs:string
17 Name string
18 Input string
19 Output [][]string
33 Output: [][]string{{"a", "b", "c"}},
37 Output: [][]string{{"a", "b"}, {"c", "d"}},
41 Output: [][]string{{"a", "b\rc", "d"}},
50 Output: [][]string{
61 Output: [][]string{{"a", "b", "c"}},
65 Output: [][]string{{"a", "b", "c"}},
73 Output: [][]string{{"two\nline", "one line", "three\nline\nfield"}},
77 Output: [][]string{
84 Output: [][]string{
93 Output: [][]string{{"a", "b", "c"}},
98 Output: [][]string{{" a", " b", " c"}},
102 Output: [][]string{{"a", "b", "c"}},
107 Output: [][]string{{"#1", "2", "3"}, {"a", "b", "c"}},
111 Output: [][]string{{`a "word"`, `1"2`, `a"`, `b`}},
116 Output: [][]string{{`a "word"`, `1"2`, `a"`}},
121 Output: [][]string{{`a""b`, `c`}},
130 Output: [][]string{{"a", " b", "c"}},
159 Output: [][]string{{"a", "b", "c"}, {"d", "e"}},
163 Output: [][]string{{"a", "b", "c", ""}},
167 Output: [][]string{{"a", "b", "c", ""}},
171 Output: [][]string{{"a", "b", "c", ""}},
176 Output: [][]string{{"a", "b", "c", ""}},
181 Output: [][]string{{"a", "b", "c"}, {"d", "e", "f"}, {"g", "hi", ""}},
186 Output: [][]string{{"a", "b", "c", " "}},
200 Output: [][]string{
215 Output: [][]string{
223 Output: [][]string{
239 Output: [][]string{
245 Output: [][]string{{"x09A\xb4\x1c", "aktau"}},
249 Output: [][]string{{"field1", "field2"}},
253 Output: [][]string{{"field"}},
261 Output: [][]string{{"field\rfield"}},
265 Output: [][]string{{"field\r\rfield\r"}},
269 Output: [][]string{{"field\r"}, {"field\r"}},
273 Output: [][]string{{"field\r"}, {"\rfield\r"}},
277 Output: [][]string{{"field\r"}, {"\r\rfield\r"}, {"\r"}},
281 Output: [][]string{
289 Output: [][]string{{"a", "b,c", "d,e"}},
296 Output: [][]string{{"a", " b,", " c"}},
304 Output: [][]string{{"ab?cd", "ef?gh"}},
310 Output: [][]string{{"?"}, {"?"}, {"?"}},
315 Output: [][]string{{"\n\n\n\n"}},
324 Output: [][]string{{strings.Repeat("@", 5000), strings.Repeat("*", 5000)}},
333 Output: [][]string{{`foo"bar`}},
338 Output: [][]string{{`foo"bar`}},
342 Output: [][]string{{`"""`}},
350 Output: [][]string{{`"""`}},
410 // nTimes is an io.Reader which yields the string s n times.
412 s string
438 func benchmarkRead(b *testing.B, initReader func(*Reader), rows string) {