Searched refs:targetCharset (Results 1 – 4 of 4) sorted by relevance
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/ |
D | VNodeBuilder.java | 67 public VNodeBuilder(String targetCharset, boolean strictLineBreakParsing) { in VNodeBuilder() argument 69 if (targetCharset != null) { in VNodeBuilder() 70 mTargetCharset = targetCharset; in VNodeBuilder()
|
/frameworks/opt/vcard/java/com/android/vcard/ |
D | VCardParserImpl_V21.java | 577 String targetCharset = 579 if (TextUtils.isEmpty(targetCharset)) { 580 targetCharset = VCardConfig.DEFAULT_IMPORT_CHARSET; 587 handleAdrOrgN(property, propertyRawValue, sourceCharset, targetCharset); 602 false, sourceCharset, targetCharset); 689 maybeUnescapeText(propertyRawValue), sourceCharset, targetCharset); 699 String sourceCharset, String targetCharset) throws VCardException, IOException { 719 false, sourceCharset, targetCharset); 728 rawValue, sourceCharset, targetCharset));
|
D | VCardUtils.java | 728 String sourceCharset, String targetCharset) { in parseQuotedPrintable() argument 812 return new String(decodedBytes, targetCharset); in parseQuotedPrintable() 814 Log.e(LOG_TAG, "Failed to encode: charset=" + targetCharset); in parseQuotedPrintable() 833 String originalString, String sourceCharset, String targetCharset) { in convertStringCharset() argument 834 if (sourceCharset.equalsIgnoreCase(targetCharset)) { in convertStringCharset() 844 return new String(bytes, targetCharset); in convertStringCharset() 846 Log.e(LOG_TAG, "Failed to encode: charset=" + targetCharset); in convertStringCharset()
|
D | VCardEntryConstructor.java | 76 String targetCharset) { in VCardEntryConstructor() argument
|