Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapUtils.java462 String encodedText; in stripEncoding() local
469 encodedText = m.group(3); in stripEncoding()
472 + "\nText: " + encodedText); in stripEncoding()
475 Log.d(TAG, "StripEncoding: Quoted Printable string : " + encodedText); in stripEncoding()
476 str = new String(quotedPrintableToUtf8(encodedText, charset)); in stripEncoding()
482 Log.d(TAG, "StripEncoding: base64 string : " + encodedText); in stripEncoding()
484 Base64.decode(encodedText.getBytes(charset), Base64.DEFAULT), in stripEncoding()
491 Log.e(TAG, "stripEncoding: string not encoded as base64: " + encodedText); in stripEncoding()
/packages/apps/Settings/src/com/android/settings/utils/
DAnnotationSpan.java84 public static CharSequence textWithoutLink(CharSequence encodedText) { in textWithoutLink() argument
85 SpannableString msg = new SpannableString(encodedText); in textWithoutLink()
88 return encodedText; in textWithoutLink()