Home
last modified time | relevance | path

Searched defs:textParser (Results 1 – 1 of 1) sorted by relevance

/external/golang-protobuf/proto/
Dtext_parser.go79 type textParser struct { struct
80 s string // remaining input
81 done bool // whether the parsing is finished (success or error)
82 backed bool // whether back() was called
83 offset, line int
84 cur token
95 func (p *textParser) errorf(format string, a ...interface{}) *ParseError {
133 func (p *textParser) skipWhitespace() {
157 func (p *textParser) advance() {
336 func (p *textParser) back() { p.backed = true }
[all …]