Searched refs:targetCharset (Results 1 - 4 of 4) sorted by relevance

/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DVNodeBuilder.java67 public VNodeBuilder(String targetCharset, boolean strictLineBreakParsing) { argument
69 if (targetCharset != null) {
70 mTargetCharset = targetCharset;
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntryConstructor.java71 * @deprecated targetCharset is not used anymore.
76 String targetCharset) {
75 VCardEntryConstructor(final int vcardType, final Account account, String targetCharset) argument
H A DVCardParserImpl_V21.java578 String targetCharset =
580 if (TextUtils.isEmpty(targetCharset)) {
581 targetCharset = VCardConfig.DEFAULT_IMPORT_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);
699 handleAdrOrgN(VCardProperty property, String propertyRawValue, String sourceCharset, String targetCharset) argument
H A DVCardUtils.java728 String sourceCharset, String targetCharset) {
812 return new String(decodedBytes, targetCharset);
814 Log.e(LOG_TAG, "Failed to encode: charset=" + targetCharset);
833 String originalString, String sourceCharset, String targetCharset) {
834 if (sourceCharset.equalsIgnoreCase(targetCharset)) {
844 return new String(bytes, targetCharset);
846 Log.e(LOG_TAG, "Failed to encode: charset=" + targetCharset);
726 parseQuotedPrintable( final String value, boolean strictLineBreaking, String sourceCharset, String targetCharset) argument
832 convertStringCharset( String originalString, String sourceCharset, String targetCharset) argument

Completed in 69 milliseconds