Home | History | Annotate | Download | only in mime

Lines Matching refs:split

92 		// Multi-byte characters must not be split across encoded-words.
113 // We only split encoded-words when the charset is UTF-8.
122 // Multi-byte characters must not be split across encoded-words.
202 // split delimits the first 2 fields
203 split := strings.IndexByte(word, '?')
204 // the field after split must only be one byte
205 if word[split+2] != '?' {
209 // split word "UTF-8?q?ascii" into "UTF-8", 'q', and "ascii"
210 charset := word[:split]
211 encoding := word[split+1]
212 text := word[split+3:]