Searched refs:alphabet (Results 1 - 6 of 6) sorted by relevance

/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...]
/frameworks/minikin/libs/minikin/
H A DHyphenator.cpp144 const AlphabetTable0* alphabet = header->alphabetTable0(); local
145 uint32_t min_codepoint = alphabet->min_codepoint;
146 uint32_t max_codepoint = alphabet->max_codepoint;
153 uint8_t code = alphabet->data[c - min_codepoint];
162 const AlphabetTable1* alphabet = header->alphabetTable1(); local
163 size_t n_entries = alphabet->n_entries;
164 const uint32_t* begin = alphabet->data;
187 * has been done by now, and all characters have been found in the alphabet.
/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/content/pm/
H A DVerifierDeviceIdentity.java104 final char[] alphabet = ENCODE;
130 encoded[--index] = alphabet[group];
146 * This essentially does the reverse of the ENCODED alphabet above
/frameworks/minikin/tools/
H A Dmk_hyb_file.py279 # load the ".chr" file, which contains the alphabet and case pairs, eg "aA", "bB" etc.
302 def generate_header(alphabet, trie, pattern):
304 trie_off = alphabet_off + len(alphabet)
405 alphabet = generate_alphabet(ch_map)
408 header = generate_header(alphabet, trie, pattern)
412 f.write(alphabet)
512 # reconstruct alphabet table
536 assert verify_file_sorted(reconstructed_chr, chr_fn), 'alphabet table not verified'
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 1846 milliseconds