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

  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/content/
shortcut_dict_content.cpp 49 const int shortcutFlags = shortcutListBuffer->readUintAndAdvancePosition(
52 *outProbability = shortcutFlags & Ver4DictConstants::SHORTCUT_PROBABILITY_MASK;
55 *outhasNext = shortcutFlags & Ver4DictConstants::SHORTCUT_HAS_NEXT_MASK;
136 const int shortcutFlags = shortcutListBuffer->readUint(
138 const bool hasNext = shortcutFlags & Ver4DictConstants::SHORTCUT_HAS_NEXT_MASK;
148 const int shortcutFlags = createAndGetShortcutFlags(probability, hasNext);
149 if (!shortcutListBuffer->writeUintAndAdvancePosition(shortcutFlags,
151 AKLOGE("Cannot write shortcut flags. flags; %x, pos: %d", shortcutFlags, *shortcutEntryPos);
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/
shortcut_dict_content.cpp 40 const int shortcutFlags = shortcutListBuffer->readUintAndAdvancePosition(
43 *outProbability = shortcutFlags & Ver4DictConstants::SHORTCUT_PROBABILITY_MASK;
46 *outhasNext = shortcutFlags & Ver4DictConstants::SHORTCUT_HAS_NEXT_MASK;
121 const int shortcutFlags = shortcutListBuffer->readUint(
123 const bool hasNext = shortcutFlags & Ver4DictConstants::SHORTCUT_HAS_NEXT_MASK;
133 const int shortcutFlags = createAndGetShortcutFlags(probability, hasNext);
134 if (!shortcutListBuffer->writeUintAndAdvancePosition(shortcutFlags,
136 AKLOGE("Cannot write shortcut flags. flags; %x, pos: %d", shortcutFlags, *shortcutEntryPos);
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
patricia_trie_policy.cpp 466 const ShortcutListReadingUtils::ShortcutFlags shortcutFlags =
468 hasNext = ShortcutListReadingUtils::hasNext(shortcutFlags);
472 ShortcutListReadingUtils::getProbabilityFromFlags(shortcutFlags);
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
BaseShortcutManagerTest.java     [all...]

Completed in 933 milliseconds