HomeSort by relevance Sort by last modified time
    Searched defs:base64Alphabet (Results 1 - 5 of 5) sorted by null

  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
Base64.java 37 private static byte[] base64Alphabet = new byte[BASELENGTH];
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]];
99 b2 = base64Alphabet[base64Data[dataIndex + 1]];
103 b3 = base64Alphabet[marker0]
    [all...]
  /external/apache-http/src/org/apache/commons/codec/binary/
Base64.java 97 private static byte[] base64Alphabet = new byte[BASELENGTH];
103 base64Alphabet[i] = (byte) -1;
106 base64Alphabet[i] = (byte) (i - 'A');
109 base64Alphabet[i] = (byte) (i - 'a' + 26);
112 base64Alphabet[i] = (byte) (i - '0' + 52);
115 base64Alphabet['+'] = 62;
116 base64Alphabet['/'] = 63;
137 } else if (base64Alphabet[octect] == -1) {
406 b1 = base64Alphabet[base64Data[dataIndex]];
407 b2 = base64Alphabet[base64Data[dataIndex + 1]]
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /prebuilts/tools/common/m2/internal/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar 
  /external/jdiff/
xerces.jar 

Completed in 47 milliseconds