Searched refs:alphabet (Results 1 – 9 of 9) sorted by relevance
239 final private int[] alphabet; field in Base64.Decoder244 alphabet = ((flags & URL_SAFE) == 0) ? DECODE : DECODE_WEBSAFE; in Decoder()278 final int[] alphabet = this.alphabet; in process() local297 (value = ((alphabet[input[p] & 0xff] << 18) | in process()298 (alphabet[input[p+1] & 0xff] << 12) | in process()299 (alphabet[input[p+2] & 0xff] << 6) | in process()300 (alphabet[input[p+3] & 0xff]))) >= 0) { in process()315 int d = alphabet[input[p++] & 0xff]; in process()579 final private byte[] alphabet; field in Base64.Encoder587 alphabet = ((flags & URL_SAFE) == 0) ? ENCODE : ENCODE_WEBSAFE; in Encoder()[all …]
332 const AlphabetTable0* alphabet = header->alphabetTable0(); in alphabetLookup() local333 uint32_t min_codepoint = alphabet->min_codepoint; in alphabetLookup()334 uint32_t max_codepoint = alphabet->max_codepoint; in alphabetLookup()341 uint8_t code = alphabet->data[c - min_codepoint]; in alphabetLookup()353 const AlphabetTable1* alphabet = header->alphabetTable1(); in alphabetLookup() local354 size_t n_entries = alphabet->n_entries; in alphabetLookup()355 const uint32_t* begin = alphabet->data; in alphabetLookup()
77 String alphabet = "abcdefghijklmnopqrstuvwxyz"; in setupEditText() local83 char c = alphabet.charAt(r.nextInt(alphabet.length())); in setupEditText()
82 public AlphabetIndexer(Cursor cursor, int sortedColumnIndex, CharSequence alphabet) { in AlphabetIndexer() argument85 mAlphabet = alphabet; in AlphabetIndexer()86 mAlphabetLength = alphabet.length(); in AlphabetIndexer()
104 final char[] alphabet = ENCODE; in encodeBase32() local130 encoded[--index] = alphabet[group]; in encodeBase32()
302 def generate_header(alphabet, trie, pattern): argument304 trie_off = alphabet_off + len(alphabet)405 alphabet = generate_alphabet(ch_map)408 header = generate_header(alphabet, trie, pattern)412 f.write(alphabet)
23 The file contains three sections. The first section represents the "alphabet," including62 The alphabet table comes in two versions. The first is well suited to dense Unicode
603 std::string alphabet = "abcdefghijklmnopqrstuvwxyz"; in TEST_F() local604 const auto rot13_alphabet = client->Rot13(alphabet); in TEST_F()605 EXPECT_EQ(Rot13(alphabet), rot13_alphabet); in TEST_F()
META-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/ ...