HomeSort by relevance Sort by last modified time
    Searched full:shortcutflags (Results 1 - 8 of 8) sorted by null

  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/shortcut/
shortcut_list_reading_utils.h 29 typedef uint8_t ShortcutFlags;
31 static ShortcutFlags getFlagsAndForwardPointer(const ReadOnlyByteArrayView buffer,
34 static AK_FORCE_INLINE int getProbabilityFromFlags(const ShortcutFlags flags) {
38 static AK_FORCE_INLINE bool hasNext(const ShortcutFlags flags) {
56 static AK_FORCE_INLINE bool isWhitelist(const ShortcutFlags flags) {
66 static const ShortcutFlags FLAG_ATTRIBUTE_HAS_NEXT;
67 static const ShortcutFlags MASK_ATTRIBUTE_PROBABILITY;
shortcut_list_reading_utils.cpp 24 const ShortcutListReadingUtils::ShortcutFlags
27 const ShortcutListReadingUtils::ShortcutFlags
33 /* static */ ShortcutListReadingUtils::ShortcutFlags
  /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/shortcut/
shortcut_list_policy.h 47 const ShortcutListReadingUtils::ShortcutFlags flags =
  /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/core/java/android/content/pm/
ShortcutInfo.java 108 public @interface ShortcutFlags {}
213 @ShortcutFlags
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
BaseShortcutManagerTest.java     [all...]

Completed in 210 milliseconds