OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stripEncoding
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
BluetoothMapUtilsTest.java
48
assertTrue(BluetoothMapUtils.
stripEncoding
(encText1).equals(decText1));
49
assertTrue(BluetoothMapUtils.
stripEncoding
(encText2).equals(decText2));
50
assertTrue(BluetoothMapUtils.
stripEncoding
(encText3).equals(decText3));
51
assertTrue(BluetoothMapUtils.
stripEncoding
(encText4).equals(decText4));
52
assertTrue(BluetoothMapUtils.
stripEncoding
(encText5).equals(decText5));
53
assertTrue(BluetoothMapUtils.
stripEncoding
(encText6).equals(decText6));
55
BluetoothMapUtils.
stripEncoding
(encText7));
56
assertTrue(BluetoothMapUtils.
stripEncoding
(encText7).equals(decText7));
57
assertTrue(BluetoothMapUtils.
stripEncoding
(encText8).equals(decText8));
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessageMime.java
524
headerValue = BluetoothMapUtils.
stripEncoding
(headerValue);
528
headerValue = BluetoothMapUtils.
stripEncoding
(headerValue);
532
headerValue = BluetoothMapUtils.
stripEncoding
(headerValue);
536
headerValue = BluetoothMapUtils.
stripEncoding
(headerValue);
540
headerValue = BluetoothMapUtils.
stripEncoding
(headerValue);
544
subject = BluetoothMapUtils.
stripEncoding
(headerValue);
BluetoothMapUtils.java
434
static public String
stripEncoding
(String in){
451
Log.d(TAG,"
StripEncoding
: Quoted Printable string : " + encodedText);
458
Log.d(TAG,"
StripEncoding
: base64 string : " + encodedText);
461
Log.d(TAG,"
StripEncoding
: decoded string : " + str);
464
Log.e(TAG, "
stripEncoding
: Unsupported charset: " + charset);
466
Log.e(TAG,"
stripEncoding
: string not encoded as base64: " +encodedText);
469
Log.e(TAG, "
stripEncoding
: Hit unknown encoding: "+encoding);
Completed in 80 milliseconds