Home | History | Annotate | Download | only in fmt

Lines Matching refs:scanning

19 // Scanners may do rune-at-a-time scanning or ask the ScanState
46 // called by the scanning routines and a valid implementation of
67 // Scanln is similar to Scan, but stops scanning at a newline and
103 // Sscanln is similar to Sscan, but stops scanning at a newline and
128 // Fscanln is similar to Fscan, but stops scanning at a newline and
148 // scanError represents an error generated by the scanning software.
222 // It is called in cases such as string scanning where an EOF is a
296 // notSpace is the default scanning function used in Token.
302 // characters in keeping with the current scanning mode set by format strings
378 return errors.New("fmt: scanning called UnreadRune with no rune available")
473 var complexError = errors.New("syntax error scanning complex number")
474 var boolError = errors.New("syntax error scanning boolean")
1044 // doScan does the real work for scanning without a format string.
1154 // doScanf does the real work when scanning with a format string.