Home
last modified time | relevance | path

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

/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
DBase64.java37 private static byte[] base64Alphabet = new byte[BASELENGTH]; field in Base64
42 base64Alphabet[i] = (byte) -1;
45 base64Alphabet[i] = (byte) (i - 'A');
48 base64Alphabet[i] = (byte) (i - 'a' + 26);
51 base64Alphabet[i] = (byte) (i - '0' + 52);
54 base64Alphabet['+'] = 62;
55 base64Alphabet['/'] = 63;
98 b1 = base64Alphabet[base64Data[dataIndex]]; in decodeBase64()
99 b2 = base64Alphabet[base64Data[dataIndex + 1]]; in decodeBase64()
103 b3 = base64Alphabet[marker0]; in decodeBase64()
[all …]
/packages/apps/Messaging/src/android/support/v7/mms/pdu/
DBase64.java37 private static byte[] base64Alphabet = new byte[BASELENGTH]; field in Base64
42 base64Alphabet[i] = (byte) -1;
45 base64Alphabet[i] = (byte) (i - 'A');
48 base64Alphabet[i] = (byte) (i - 'a' + 26);
51 base64Alphabet[i] = (byte) (i - '0' + 52);
54 base64Alphabet['+'] = 62;
55 base64Alphabet['/'] = 63;
98 b1 = base64Alphabet[base64Data[dataIndex]]; in decodeBase64()
99 b2 = base64Alphabet[base64Data[dataIndex + 1]]; in decodeBase64()
103 b3 = base64Alphabet[marker0]; in decodeBase64()
[all …]