Home | History | Annotate | Download | only in bufio

Lines Matching refs:split

45 		s.Split(ScanBytes)
67 s.Split(ScanRunes)
111 s.Split(ScanWords)
193 s.Split(ScanLines)
229 s.Split(ScanLines)
254 s.Split(ScanLines)
311 // Test the correct error is returned when the split function errors out.
313 // Create a split function that delivers a little data, then a predictable error.
330 s.Split(errorSplit)
351 split := func(data []byte, atEOF bool) (advance int, token []byte, err error) {
361 s.Split(split)
410 scanner.Split(ScanWords)
433 s.Split(commaSplit)
468 s.Split(loopAtEOFSplit)
503 func (c *countdown) split(data []byte, atEOF bool) (advance int, token []byte, err error) {
515 s.Split(c.split)