Home | History | Annotate | Download | only in mail

Lines Matching refs:quoted

401 	// local-part = dot-atom / quoted-string
408 // quoted-string
409 debug.Printf("consumeAddrSpec: parsing quoted-string")
412 err = errors.New("mail: empty quoted string in addr-spec")
450 // word = atom / quoted-string
458 // quoted-string
490 // consumeQuotedString parses the quoted string at the start of p.
504 return "", errors.New("mail: unclosed quoted-string")
507 return "", fmt.Errorf("mail: invalid utf-8 in quoted-string: %q", p.s)
510 // quoted-pair = ("\" (VCHAR / WSP))
513 return "", fmt.Errorf("mail: bad character in quoted-string: %q", r)
531 return "", fmt.Errorf("mail: bad character in quoted-string: %q", r)
592 // TODO(stapelberg): parse quoted-string within comment
736 // quoteString renders a string as an RFC 5322 quoted-string.