HomeSort by relevance Sort by last modified time
    Searched refs:DICT (Results 1 - 9 of 9) sorted by null

  /packages/inputmethods/LatinIME/native/src/
bigram_dictionary.h 25 BigramDictionary(const unsigned char *dict, int maxWordLength, int maxAlternatives,
36 bool getFirstBitOfByte(int *pos) { return (DICT[*pos] & 0x80) > 0; }
37 bool getSecondBitOfByte(int *pos) { return (DICT[*pos] & 0x40) > 0; }
40 const unsigned char *DICT;
bigram_dictionary.cpp 28 BigramDictionary::BigramDictionary(const unsigned char *dict, int maxWordLength,
31 : DICT(dict + NEW_DICTIONARY_HEADER_SIZE), MAX_WORD_LENGTH(maxWordLength),
114 const uint8_t* const root = DICT;