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

  /external/sl4a/Common/src/org/apache/commons/codec/binary/
Base64Codec.java 124 private static final byte[] DECODE_TABLE = {
145 * Encode table to use: either STANDARD or URL_SAFE. Note: the DECODE_TABLE above remains static because it is able
554 if (b >= 0 && b < DECODE_TABLE.length) {
555 int result = DECODE_TABLE[b];
596 return octet == PAD || (octet >= 0 && octet < DECODE_TABLE.length && DECODE_TABLE[octet] != -1);
    [all...]
  /external/owasp/sanitizer/lib/commons-codec-1.4/
commons-codec-1.4.jar 

Completed in 65 milliseconds