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

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v2/
patricia_trie_policy.cpp 417 int shortcutTargetCodePoints[MAX_WORD_LENGTH];
425 mDictRoot, MAX_WORD_LENGTH, shortcutTargetCodePoints, &shortcutPos);
426 const std::vector<int> shortcutTarget(shortcutTargetCodePoints,
427 shortcutTargetCodePoints + shortcutTargetLength);
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 360 std::vector<int> shortcutTargetCodePoints;
361 JniDataUtils::jintarrayToVector(env, shortcutTarget, &shortcutTargetCodePoints);
362 if (!shortcutTargetCodePoints.empty()) {
363 shortcuts.emplace_back(&shortcutTargetCodePoints, shortcutProbability);
475 std::vector<int> shortcutTargetCodePoints;
476 JniDataUtils::jintarrayToVector(env, shortcutTarget, &shortcutTargetCodePoints);
477 if (!shortcutTargetCodePoints.empty()) {
480 shortcuts.emplace_back(&shortcutTargetCodePoints, shortcutProbability);
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionary.java 432 final int[] shortcutTargetCodePoints = (shortcutTarget != null) ?
434 if (!addUnigramEntryNative(mNativeDict, codePoints, probability, shortcutTargetCodePoints,

Completed in 53 milliseconds