Home | History | Annotate | Download | only in fmt

Lines Matching refs:SkipSpace

29 	// SkipSpace skips space in the input. Newlines are treated appropriately
32 SkipSpace()
33 // Token skips space in the input if skipSpace is true, then returns the
41 Token(skipSpace bool, f func(rune) bool) (token []byte, err error)
247 func (s *ss) Token(skipSpace bool, f func(rune) bool) (tok []byte, err error) {
261 tok = s.token(skipSpace, f)
417 // SkipSpace provides Scan methods the ability to skip space and newline
420 func (s *ss) SkipSpace() {
446 func (s *ss) token(skipSpace bool, f func(rune) bool) []byte {
447 if skipSpace {
448 s.SkipSpace()
532 s.SkipSpace()
636 s.SkipSpace()
669 s.SkipSpace()
790 s.SkipSpace()
804 s.SkipSpace()
968 s.SkipSpace()
974 s.SkipSpace()
1012 s.SkipSpace()
1180 s.SkipSpace()