Searched refs:getCharset (Results 1 - 14 of 14) sorted by relevance
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/ |
H A D | Multipart.java | 172 BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out, CharsetUtil.getCharset(getCharset())),8192);
198 private String getCharset() {
method in class:Multipart 200 String charString = ((ContentTypeField) e.getHeader().getField(Field.CONTENT_TYPE)).getCharset();
|
H A D | Entity.java | 120 public String getCharset() {
method in class:Entity 121 return ContentTypeField.getCharset(
|
H A D | Header.java | 151 String charString = ((ContentTypeField) getField(Field.CONTENT_TYPE)).getCharset();
153 BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out, CharsetUtil.getCharset(charString)),8192);
|
H A D | Message.java | 187 body = new MemoryTextBody(is, bd.getCharset());
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/ |
H A D | ContentTypeField.java | 167 public String getCharset() {
method in class:ContentTypeField 178 public static String getCharset(ContentTypeField f) {
method in class:ContentTypeField 180 if (f.getCharset() != null && f.getCharset().length() > 0) {
181 return f.getCharset();
|
/packages/apps/Mms/src/com/android/mms/model/ |
H A D | TextModel.java | 96 public int getCharset() { method in class:TextModel
|
H A D | MediaModelFactory.java | 137 part.getCharset(), part.getData(), regionModel); 150 part.getCharset(), part.getData(), regionModel);
|
H A D | SlideshowModel.java | 258 part.setCharset(text.getCharset());
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
H A D | BluetoothMapObexServer.java | 211 Log.d(TAG," charset: " + appParams.getCharset()); 237 if(appParams.getCharset() == BluetoothMapAppParams.INVALID_VALUE_PARAMETER) { 238 if(D) Log.d(TAG, "Missing charset - unable to decode message content. appParams.getCharset() = " + appParams.getCharset()); 256 message = BluetoothMapbMessage.parse(bMsgStream, appParams.getCharset()); // Decode the messageBody 421 Log.d(TAG,"TYPE_MESSAGE (GET): Attachment = " + appParams.getAttachment() + ", Charset = " + appParams.getCharset() +
|
H A D | BluetoothMapAppParams.java | 487 if (getCharset() != INVALID_VALUE_PARAMETER) { 490 appParamBuf.put((byte) getCharset()); 729 public int getCharset() { method in class:BluetoothMapAppParams
|
H A D | BluetoothMapContentObserver.java | 643 int charset = ap.getCharset();
|
H A D | BluetoothMapContent.java | 1343 return getSmsMessage(id, appParams.getCharset());
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/ |
H A D | BodyDescriptor.java | 356 public String getCharset() {
method in class:BodyDescriptor
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/ |
H A D | CharsetUtil.java | 1192 public static java.nio.charset.Charset getCharset(String charsetName) {
method in class:CharsetUtil
|
Completed in 1703 milliseconds