Searched refs:CRLF (Results 1 – 9 of 9) sorted by relevance
28 private static final String CRLF = "\r\n"; field in BmessageBuilder71 int bodyLen = MSG_BEGIN.length() + MSG_END.length() + 3 * CRLF.length() in build()74 mBmsg.append(BMSG_BEGIN).append(CRLF); in build()76 mBmsg.append(BMSG_VERSION).append(CRLF); in build()77 mBmsg.append(BMSG_STATUS).append(bmsg.mBmsgStatus).append(CRLF); in build()78 mBmsg.append(BMSG_TYPE).append(bmsg.mBmsgType).append(CRLF); in build()79 mBmsg.append(BMSG_FOLDER).append(bmsg.mBmsgFolder).append(CRLF); in build()86 mBmsg.append(BENV_BEGIN).append(CRLF); in build()93 mBmsg.append(BBODY_BEGIN).append(CRLF); in build()96 mBmsg.append(BBODY_ENCODING).append(bmsg.mBbodyEncoding).append(CRLF); in build()[all …]
41 private static final String CRLF = "\r\n"; field in BmessageParser114 mParser = new BmsgTokenizer(str + CRLF); in parse()373 out.append(BEGIN_VCARD).append(CRLF); in extractVcard()377 out.append(prop).append(CRLF); in extractVcard()
263 out, Base64.CRLF | Base64.NO_CLOSE); in writeOneAttachment()383 out.write(Base64.encode(textBytes, Base64.CRLF)); in writeTextWithHeaders()
40 out.write(Base64.encode(bytes, Base64.CRLF)); in writeTo()
74 out, Base64.CRLF | Base64.NO_CLOSE); in writeTo()
37 out.write(Base64.encode(bytes, Base64.CRLF)); in writeTo()
69 Base64OutputStream base64Out = new Base64OutputStream(out, Base64.CRLF | Base64.NO_CLOSE); in writeTo()
1066 public static final String CRLF = "\r\n"; field in CharsetUtil