Home
last modified time | relevance | path

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

/frameworks/opt/vcard/java/com/android/vcard/
DVCardParserImpl_V21.java574 final String sourceCharset = VCardConfig.DEFAULT_INTERMEDIATE_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));
DVCardUtils.java728 String sourceCharset, String targetCharset) { in parseQuotedPrintable() argument
797 rawBytes = rawString.getBytes(sourceCharset); in parseQuotedPrintable()
799 Log.w(LOG_TAG, "Failed to decode: " + sourceCharset); in parseQuotedPrintable()
833 String originalString, String sourceCharset, String targetCharset) { in convertStringCharset() argument
834 if (sourceCharset.equalsIgnoreCase(targetCharset)) { in convertStringCharset()
837 final Charset charset = Charset.forName(sourceCharset); in convertStringCharset()