Home
last modified time | relevance | path

Searched refs:shortcutPos (Results 1 – 6 of 6) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
Dpatricia_trie_policy.cpp384 const int shortcutPos = getShortcutPositionOfPtNode(getTerminalPtNodePosFromWordId(wordId)); in getShortcutIterator() local
385 return BinaryDictionaryShortcutIterator(&mShortcutListPolicy, shortcutPos); in getShortcutIterator()
409 int shortcutPos = NOT_A_DICT_POS; in createAndGetLeavingChildNode() local
415 mergedNodeCodePoints, &probability, &childrenPos, &shortcutPos, &bigramPos, in createAndGetLeavingChildNode()
460 int shortcutPos = getShortcutPositionOfPtNode(ptNodePos); in getWordProperty() local
461 if (shortcutPos != NOT_A_DICT_POS) { in getWordProperty()
463 ShortcutListReadingUtils::getShortcutListSizeAndForwardPointer(mBuffer, &shortcutPos); in getWordProperty()
467 ShortcutListReadingUtils::getFlagsAndForwardPointer(mBuffer, &shortcutPos); in getWordProperty()
470 mBuffer, MAX_WORD_LENGTH, shortcutTargetCodePoints, &shortcutPos); in getWordProperty()
Dver2_patricia_trie_node_reader.cpp37 int shortcutPos = NOT_A_DICT_POS; in fetchPtNodeParamsInBufferFromPtNodePos() local
42 &probability, &childrenPos, &shortcutPos, &bigramPos, &siblingPos); in fetchPtNodeParamsInBufferFromPtNodePos()
49 probability, childrenPos, shortcutPos, bigramPos, siblingPos); in fetchPtNodeParamsInBufferFromPtNodePos()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
Dbinary_dictionary_shortcut_iterator.h29 const int shortcutPos) in BinaryDictionaryShortcutIterator() argument
31 mPos(shortcutStructurePolicy->getStartPos(shortcutPos)), in BinaryDictionaryShortcutIterator()
32 mHasNextShortcutTarget(shortcutPos != NOT_A_DICT_POS) {} in BinaryDictionaryShortcutIterator()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/
Dver4_patricia_trie_policy.cpp133 const int shortcutPos = getShortcutPositionOfWord(wordId); in getShortcutIterator() local
134 return BinaryDictionaryShortcutIterator(&mShortcutPolicy, shortcutPos); in getShortcutIterator()
545 int shortcutPos = getShortcutPositionOfWord(wordId); in getWordProperty() local
546 if (shortcutPos != NOT_A_DICT_POS) { in getWordProperty()
555 &shortcutTargetLength, &shortcutProbability, &hasNext, &shortcutPos); in getWordProperty()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
Dver4_patricia_trie_policy.cpp238 const int shortcutPos = getShortcutPositionOfPtNode(getTerminalPtNodePosFromWordId(wordId)); in getShortcutIterator() local
239 return BinaryDictionaryShortcutIterator(&mShortcutPolicy, shortcutPos); in getShortcutIterator()
601 int shortcutPos = getShortcutPositionOfPtNode(ptNodePos); in getWordProperty() local
602 if (shortcutPos != NOT_A_DICT_POS) { in getWordProperty()
611 &shortcutTargetLength, &shortcutProbability, &hasNext, &shortcutPos); in getWordProperty()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
Dpt_node_params.h62 const int childrenPos, const int shortcutPos, const int bigramPos, in PtNodeParams() argument
69 mBigramLinkedNodePos(NOT_A_DICT_POS), mShortcutPos(shortcutPos), in PtNodeParams()