Searched refs:alphabet (Results 1 – 10 of 10) sorted by relevance
240 final private int[] alphabet; field in Base64.Decoder245 alphabet = ((flags & URL_SAFE) == 0) ? DECODE : DECODE_WEBSAFE; in Decoder()279 final int[] alphabet = this.alphabet; in process() local298 (value = ((alphabet[input[p] & 0xff] << 18) | in process()299 (alphabet[input[p+1] & 0xff] << 12) | in process()300 (alphabet[input[p+2] & 0xff] << 6) | in process()301 (alphabet[input[p+3] & 0xff]))) >= 0) { in process()316 int d = alphabet[input[p++] & 0xff]; in process()580 final private byte[] alphabet; field in Base64.Encoder588 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()
70 String alphabet = "abcdefghijklmnopqrstuvwxyz"; in setupEditText() local76 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()
107 final char[] alphabet = ENCODE; in encodeBase32() local133 encoded[--index] = alphabet[group]; in encodeBase32()
310 def generate_header(alphabet, trie, pattern): argument312 trie_off = alphabet_off + len(alphabet)413 alphabet = generate_alphabet(ch_map)416 header = generate_header(alphabet, trie, pattern)420 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()
76679 Landroid/util/Base64$Decoder;->alphabet:[I76690 Landroid/util/Base64$Encoder;->alphabet:[B