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

  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
trie_map.h 61 class TrieMapRange;
71 const TrieMapRange getEntriesInNextLevel() const {
72 return TrieMapRange(mTrieMap, mNextLevelBitmapEntryIndex);
143 class TrieMapRange {
145 TrieMapRange(const TrieMap *const trieMap, const int bitmapEntryIndex)
157 DISALLOW_DEFAULT_CONSTRUCTOR(TrieMapRange);
158 DISALLOW_ASSIGNMENT_OPERATOR(TrieMapRange);
199 const TrieMapRange getEntriesInRootLevel() const {
203 const TrieMapRange getEntriesInSpecifiedLevel(const int bitmapEntryIndex) const {
204 return TrieMapRange(this, bitmapEntryIndex)
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/
language_model_dict_content.h 95 EntryRange(const TrieMap::TrieMapRange trieMapRange, const bool hasHistoricalInfo)
96 : mTrieMapRange(trieMapRange), mHasHistoricalInfo(hasHistoricalInfo) {}
110 const TrieMap::TrieMapRange mTrieMapRange;
239 const TrieMap::TrieMapRange trieMapRange, const int nextLevelBitmapEntryIndex);
language_model_dict_content.cpp 276 const TrieMap::TrieMapRange trieMapRange, const int nextLevelBitmapEntryIndex) {
277 for (auto &entry : trieMapRange) {

Completed in 43 milliseconds