Home | History | Annotate | Download | only in yacc

Lines Matching refs:bufio

48 	"bufio"
155 var finput *bufio.Reader // input file
156 var stderr *bufio.Writer
157 var ftable *bufio.Writer // y.go file
159 var foutput *bufio.Writer // y.output file
380 stderr = bufio.NewWriter(os.Stderr)
3206 func putrune(f *bufio.Writer, c int) {
3213 func getrune(f *bufio.Reader) rune {
3236 func ungetrune(f *bufio.Reader, c rune) {
3246 func write(f *bufio.Writer, b []byte, n int) int {
3250 func open(s string) *bufio.Reader {
3256 return bufio.NewReader(fi)
3259 func create(s string) *bufio.Writer {
3265 return bufio.NewWriter(fo)