Home
last modified time | relevance | path

Searched refs:peekRune (Results 1 – 2 of 2) sorted by relevance

/external/starlark-go/syntax/
Dscan.go362 func (sc *scanner) peekRune() rune { func
486 c = sc.peekRune()
539 c = sc.peekRune()
544 c = sc.peekRune()
555 c = sc.peekRune()
622 if sc.peekRune() != '\n' {
650 c = sc.peekRune()
656 c = sc.peekRune()
662 c = sc.peekRune()
718 if sc.peekRune() == '=' {
[all …]
/external/licenseclassifier/commentparser/
Dcomment_parser.go146 c, ok := i.peekRune()
192 c, ok = i.peekRune()
323 if c, ok := i.peekRune(); ok && c == r {
344 func (i *input) peekRune() (rune, bool) { func