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.java575 final String sourceCharset = VCardConfig.DEFAULT_INTERMEDIATE_CHARSET;
588 handleAdrOrgN(property, propertyRawValue, sourceCharset, targetCharset);
603 false, sourceCharset, targetCharset);
690 propertyRawValue, sourceCharset, targetCharset));
700 String sourceCharset, String targetCharset) throws VCardException, IOException {
720 false, sourceCharset, targetCharset);
725 getPotentialMultiline(propertyRawValue), 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()