Searched defs:alphabet (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DAlphabetIndexer.java25 * If the items in the adapter are sorted by simple alphabet-based sorting, then
32 * index of a given section (alphabet).
52 * Cached length of the alphabet array.
68 * The section array converted from the alphabet string.
77 * @param alphabet string containing the alphabet, with space as the first character.
80 * characters in the alphabet will show up as preview letters.
82 public AlphabetIndexer(Cursor cursor, int sortedColumnIndex, CharSequence alphabet) { argument
85 mAlphabet = alphabet;
86 mAlphabetLength = alphabet
[all...]
/frameworks/base/core/java/android/util/
H A DBase64.java179 * Base64 alphabet.
239 final private int[] alphabet; field in class:Base64.Decoder
244 alphabet = ((flags & URL_SAFE) == 0) ? DECODE : DECODE_WEBSAFE;
271 // the loop. (Even alphabet makes a measurable
278 final int[] alphabet = this.alphabet;
297 (value = ((alphabet[input[p] & 0xff] << 18) |
298 (alphabet[input[p+1] & 0xff] << 12) |
299 (alphabet[input[p+2] & 0xff] << 6) |
300 (alphabet[inpu
579 final private byte[] alphabet; field in class:Base64.Encoder
[all...]

Completed in 245 milliseconds