Searched refs:alphabet (Results 1 – 9 of 9) sorted by relevance
241 final private int[] alphabet; field in Base64.Decoder246 alphabet = ((flags & URL_SAFE) == 0) ? DECODE : DECODE_WEBSAFE; in Decoder()280 final int[] alphabet = this.alphabet; in process() local299 (value = ((alphabet[input[p] & 0xff] << 18) | in process()300 (alphabet[input[p+1] & 0xff] << 12) | in process()301 (alphabet[input[p+2] & 0xff] << 6) | in process()302 (alphabet[input[p+3] & 0xff]))) >= 0) { in process()317 int d = alphabet[input[p++] & 0xff]; in process()581 final private byte[] alphabet; field in Base64.Encoder589 alphabet = ((flags & URL_SAFE) == 0) ? ENCODE : ENCODE_WEBSAFE; in Encoder()[all …]
298 const AlphabetTable0* alphabet = header->alphabetTable0(); in alphabetLookup() local299 uint32_t min_codepoint = alphabet->min_codepoint; in alphabetLookup()300 uint32_t max_codepoint = alphabet->max_codepoint; in alphabetLookup()307 uint8_t code = alphabet->data[c - min_codepoint]; in alphabetLookup()319 const AlphabetTable1* alphabet = header->alphabetTable1(); in alphabetLookup() local320 size_t n_entries = alphabet->n_entries; in alphabetLookup()321 const uint32_t* begin = alphabet->data; in alphabetLookup()
71 String alphabet = "abcdefghijklmnopqrstuvwxyz"; in setupEditText() local77 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()
311 def generate_header(alphabet, trie, pattern): argument313 trie_off = alphabet_off + len(alphabet)414 alphabet = generate_alphabet(ch_map)417 header = generate_header(alphabet, trie, pattern)421 f.write(alphabet)
78 int[] alphabet = { in onCreate()
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 javax/ javax/net/ javax/ ...