Home
last modified time | relevance | path

Searched refs:qm1 (Results 1 – 1 of 1) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
DDecoderUtil.java178 int qm1 = body.indexOf('?', begin + 2); in decodeEncodedWords() local
179 if (qm1 == -1) { in decodeEncodedWords()
182 int qm2 = body.indexOf('?', qm1 + 1); in decodeEncodedWords()
219 int qm1 = body.indexOf('?', begin + 2); in decodeEncodedWord() local
220 if (qm1 == -1 || qm1 == end - 2) in decodeEncodedWord()
223 int qm2 = body.indexOf('?', qm1 + 1); in decodeEncodedWord()
227 String mimeCharset = body.substring(begin + 2, qm1); in decodeEncodedWord()
228 String encoding = body.substring(qm1 + 1, qm2); in decodeEncodedWord()