Lines Matching refs:textParser
79 type textParser struct { struct
87 func newTextParser(s string) *textParser {
88 p := new(textParser)
95 func (p *textParser) errorf(format string, a ...interface{}) *ParseError { argument
133 func (p *textParser) skipWhitespace() { argument
157 func (p *textParser) advance() { argument
322 func (p *textParser) back() { p.backed = true } argument
325 func (p *textParser) next() *token { argument
355 func (p *textParser) consumeToken(s string) error { argument
368 func (p *textParser) missingRequiredFieldError(sv reflect.Value) *RequiredNotSetError { argument
395 func (p *textParser) checkForColon(props *Properties, typ reflect.Type) *ParseError { argument
435 func (p *textParser) readStruct(sv reflect.Value, terminator string) error { argument
694 func (p *textParser) consumeExtName() (string, error) { argument
726 func (p *textParser) consumeOptionalSeparator() error { argument
737 func (p *textParser) readAny(v reflect.Value, props *Properties) error { argument