Searched refs:alphabet (Results 1 - 8 of 8) 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/base/apct-tests/perftests/core/src/android/widget/
H A DEditTextLongTextPerfTest.java77 String alphabet = "abcdefghijklmnopqrstuvwxyz";
83 char c = alphabet.charAt(r.nextInt(alphabet.length()));
/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/libs/minikin/
H A DHyphenator.cpp136 // alphabet is not expected to contain a hyphen or a soft hyphen character, so alphabetLookup
332 const AlphabetTable0* alphabet = header->alphabetTable0(); local
333 uint32_t min_codepoint = alphabet->min_codepoint;
334 uint32_t max_codepoint = alphabet->max_codepoint;
341 uint8_t code = alphabet->data[c - min_codepoint];
353 const AlphabetTable1* alphabet = header->alphabetTable1(); local
354 size_t n_entries = alphabet->n_entries;
355 const uint32_t* begin = alphabet->data;
381 * has been done by now, and all characters have been found in the alphabet.
/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/native/libs/vr/libpdx_uds/
H A Dremote_method_tests.cpp603 std::string alphabet = "abcdefghijklmnopqrstuvwxyz"; local
604 const auto rot13_alphabet = client->Rot13(alphabet);
605 EXPECT_EQ(Rot13(alphabet), rot13_alphabet);
/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 797 milliseconds