Lines Matching full:quoted
121 // Quote returns a double-quoted Go string literal representing s. The
129 // AppendQuote appends a double-quoted Go string literal representing s,
135 // QuoteToASCII returns a double-quoted Go string literal representing s.
142 // AppendQuoteToASCII appends a double-quoted Go string literal representing s,
148 // QuoteToGraphic returns a double-quoted Go string literal representing s.
156 // AppendQuoteToGraphic appends a double-quoted Go string literal representing s,
162 // QuoteRune returns a single-quoted Go character literal representing the
171 // AppendQuoteRune appends a single-quoted Go character literal representing the rune,
177 // QuoteRuneToASCII returns a single-quoted Go character literal representing
187 // AppendQuoteRuneToASCII appends a single-quoted Go character literal representing the rune,
193 // QuoteRuneToGraphic returns a single-quoted Go character literal representing
203 // AppendQuoteRuneToGraphic appends a single-quoted Go character literal representing the rune,
218 return false // BOMs are invisible and should not be quoted.
370 // QuotedPrefix returns the quoted string (as understood by [Unquote]) at the prefix of s.
371 // If s does not start with a valid quoted string, QuotedPrefix returns an error.
377 // Unquote interprets s as a single-quoted, double-quoted,
379 // that s quotes. (If s is single-quoted, it would be a Go
390 // unquote parses a quoted string at the start of the input,
431 // Handle quoted strings without any escape sequences.
450 // Handle quoted strings with escape sequences.
475 // Single quoted strings must be a single character.