/frameworks/base/core/java/android/util/ |
D | Base64.java | 242 final private int[] alphabet; field in Base64.Decoder 247 alphabet = ((flags & URL_SAFE) == 0) ? DECODE : DECODE_WEBSAFE; in Decoder() 281 final int[] alphabet = this.alphabet; in process() local 300 (value = ((alphabet[input[p] & 0xff] << 18) | in process() 301 (alphabet[input[p+1] & 0xff] << 12) | in process() 302 (alphabet[input[p+2] & 0xff] << 6) | in process() 303 (alphabet[input[p+3] & 0xff]))) >= 0) { in process() 318 int d = alphabet[input[p++] & 0xff]; in process() 582 final private byte[] alphabet; field in Base64.Encoder 590 alphabet = ((flags & URL_SAFE) == 0) ? ENCODE : ENCODE_WEBSAFE; in Encoder() [all …]
|
/frameworks/base/apct-tests/perftests/core/src/android/widget/ |
D | EditTextLongTextPerfTest.java | 71 String alphabet = "abcdefghijklmnopqrstuvwxyz"; in setupEditText() local 77 char c = alphabet.charAt(r.nextInt(alphabet.length())); in setupEditText()
|
/frameworks/base/core/java/android/widget/ |
D | AlphabetIndexer.java | 82 public AlphabetIndexer(Cursor cursor, int sortedColumnIndex, CharSequence alphabet) { in AlphabetIndexer() argument 85 mAlphabet = alphabet; in AlphabetIndexer() 86 mAlphabetLength = alphabet.length(); in AlphabetIndexer()
|
/frameworks/minikin/libs/minikin/ |
D | Hyphenator.cpp | 353 const AlphabetTable0* alphabet = header->alphabetTable0(); in alphabetLookup() local 354 uint32_t min_codepoint = alphabet->min_codepoint; in alphabetLookup() 355 uint32_t max_codepoint = alphabet->max_codepoint; in alphabetLookup() 362 uint8_t code = alphabet->data[c - min_codepoint]; in alphabetLookup() 374 const AlphabetTable1* alphabet = header->alphabetTable1(); in alphabetLookup() local 375 size_t n_entries = alphabet->n_entries; in alphabetLookup() 376 const uint32_t* begin = alphabet->data; in alphabetLookup()
|
/frameworks/base/core/java/android/content/pm/ |
D | VerifierDeviceIdentity.java | 108 final char[] alphabet = ENCODE; in encodeBase32() local 134 encoded[--index] = alphabet[group]; in encodeBase32()
|
/frameworks/minikin/tools/ |
D | mk_hyb_file.py | 311 def generate_header(alphabet, trie, pattern): argument 313 trie_off = alphabet_off + len(alphabet) 414 alphabet = generate_alphabet(ch_map) 417 header = generate_header(alphabet, trie, pattern) 421 f.write(alphabet)
|
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/ |
D | EditTextInputActivity.java | 78 int[] alphabet = { in onCreate()
|
/frameworks/minikin/doc/ |
D | hyb_file_format.md | 23 The file contains three sections. The first section represents the "alphabet," including 62 The alphabet table comes in two versions. The first is well suited to dense Unicode
|
/frameworks/minikin/rust/ |
D | hyphenator.rs | 584 let hyphen_value = if let Some(alphabet) = header.alphabet_table() { in hyphenate() 585 alphabet.lookup(&mut alpha_codes, word) in hyphenate()
|
/frameworks/native/libs/vr/libpdx_uds/ |
D | remote_method_tests.cpp | 603 std::string alphabet = "abcdefghijklmnopqrstuvwxyz"; in TEST_F() local 604 const auto rot13_alphabet = client->Rot13(alphabet); in TEST_F() 605 EXPECT_EQ(Rot13(alphabet), rot13_alphabet); in TEST_F()
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 56891 Landroid/util/Base64$Decoder;->alphabet:[I 56901 Landroid/util/Base64$Encoder;->alphabet:[B
|