Home | History | Annotate | Download | only in yacc

Lines Matching refs:rune

802 		rq := []rune(q)
827 var match, c rune
997 func getword(c rune) {
1101 code := make([]rune, 0, 1024)
1126 func emitcode(code []rune, lineno int) {
1142 func isPackageClause(line []rune) bool {
1151 for i, r := range []rune("package") {
1186 func skipspace(line []rune) []rune {
1199 func lines(code []rune) [][]rune {
1200 l := make([][]rune, 0, 100)
1218 func writecode(code []rune) {
1229 var c rune
3179 var peekrune rune
3181 func isdigit(c rune) bool { return c >= '0' && c <= '9' }
3183 func isword(c rune) bool {
3213 func getrune(f *bufio.Reader) rune {
3214 var r rune
3232 //fmt.Printf("rune = %v n=%v\n", string(c), n);
3236 func ungetrune(f *bufio.Reader, c rune) {