Home
last modified time | relevance | path

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

/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
DContentTypeField.java167 public String getCharset() { in getCharset() method in ContentTypeField
178 public static String getCharset(ContentTypeField f) { in getCharset() method in ContentTypeField
180 if (f.getCharset() != null && f.getCharset().length() > 0) { in getCharset()
181 return f.getCharset(); in getCharset()
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
DMultipart.java172 …riter = new BufferedWriter(new OutputStreamWriter(out, CharsetUtil.getCharset(getCharset())),8192); in writeTo()
198 private String getCharset() { in getCharset() method in Multipart
200 … String charString = ((ContentTypeField) e.getHeader().getField(Field.CONTENT_TYPE)).getCharset(); in getCharset()
DEntity.java120 public String getCharset() { in getCharset() method in Entity
121 return ContentTypeField.getCharset( in getCharset()
DHeader.java151 String charString = ((ContentTypeField) getField(Field.CONTENT_TYPE)).getCharset(); in writeTo()
153 …er writer = new BufferedWriter(new OutputStreamWriter(out, CharsetUtil.getCharset(charString)),819… in writeTo()
DMessage.java187 body = new MemoryTextBody(is, bd.getCharset()); in body()
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java512 + appParams.getCharset()); in onPut()
646 if (appParams.getCharset() == BluetoothMapAppParams.INVALID_VALUE_PARAMETER) { in pushMessage()
649 + "appParams.getCharset() = " + appParams.getCharset()); in pushMessage()
678 message = BluetoothMapbMessage.parse(bMsgStream, appParams.getCharset()); in pushMessage()
681 Log.d(TAG, "pushMessage: charset" + appParams.getCharset() + "folderId: " in pushMessage()
1083 + appParams.getAttachment() + ", Charset = " + appParams.getCharset() in onGet()
DBluetoothMapAppParams.java709 if (getCharset() != INVALID_VALUE_PARAMETER) { in encodeParams()
712 appParamBuf.put((byte) getCharset()); in encodeParams()
1310 public int getCharset() { in getCharset() method in BluetoothMapAppParams
DBluetoothMapContent.java3576 return getSmsMessage(id, appParams.getCharset()); in getMessage()
3972 if (appParams.getCharset() == MAP_MESSAGE_CHARSET_NATIVE) { in getMmsMessage()
4036 + appParams.getCharset() + ", FractionRequest = " in getEmailMessage()
4042 if (appParams.getCharset() == MAP_MESSAGE_CHARSET_NATIVE) { in getEmailMessage()
4210 if (appParams.getCharset() == MAP_MESSAGE_CHARSET_NATIVE) { in getIMMessage()
DBluetoothMapContentObserver.java2557 int charset = ap.getCharset(); in pushMessage()
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
DBmessage.java119 public String getCharset() { in getCharset() method in Bmessage
/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
DPduPart.java215 public int getCharset() { in getCharset() method in PduPart
DPduPersister.java774 final int charset = part.getCharset(); in persistPart()
869 final int charset = part.getCharset(); in persistData()
1184 final int charset = part.getCharset(); in updatePart()
DPduComposer.java1015 final int charset = part.getCharset(); in makeMessageBody()
/packages/apps/Messaging/src/android/support/v7/mms/pdu/
DPduPart.java240 public int getCharset() { in getCharset() method in PduPart
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
DBodyDescriptor.java356 public String getCharset() { in getCharset() method in BodyDescriptor
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
DCharsetUtil.java1192 public static java.nio.charset.Charset getCharset(String charsetName) { in getCharset() method in CharsetUtil