Lines Matching defs:byte
19 func contains(s string, c byte) bool {
23 func quoteWith(s string, quote byte, ASCIIonly, graphicOnly bool) string {
27 func quoteRuneWith(r rune, quote byte, ASCIIonly, graphicOnly bool) string {
31 func appendQuotedWith(buf []byte, s string, quote byte, ASCIIonly, graphicOnly bool) []byte {
58 func appendQuotedRuneWith(buf []byte, r rune, quote byte, ASCIIonly, graphicOnly bool) []byte {
68 func appendEscapedRune(buf []byte, r rune, quote byte, ASCIIonly, graphicOnly bool) []byte {
131 func AppendQuote(dst []byte, s string) []byte {
144 func AppendQuoteToASCII(dst []byte, s string) []byte {
158 func AppendQuoteToGraphic(dst []byte, s string) []byte {
173 func AppendQuoteRune(dst []byte, r rune) []byte {
189 func AppendQuoteRuneToASCII(dst []byte, r rune) []byte {
205 func AppendQuoteRuneToGraphic(dst []byte, r rune) []byte {
232 func unhex(b byte) (v rune, ok bool) {
259 func UnquoteChar(s string, quote byte) (value rune, multibyte bool, tail string, err error) {