/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
D | KeyboardView.java | 481 int keyIndex = getKeyIndices(mStartX, mStartY, null); in setKeyboard() local 482 if ((keyIndex != NOT_A_KEY) in setKeyboard() 483 && (keyIndex < mKeys.length) in setKeyboard() 484 && (oldRepeatKeyCode == mKeys[keyIndex].codes[0])) { in setKeyboard() 486 mRepeatKeyIndex = keyIndex; in setKeyboard() 888 private void showPreview(int keyIndex) { in showPreview() argument 892 mCurrentKeyIndex = keyIndex; in showPreview() 907 if (keyIndex == NOT_A_KEY) { in showPreview() 913 if (keyIndex != NOT_A_KEY) { in showPreview() 915 showKey(keyIndex); in showPreview() [all …]
|
/packages/apps/Car/LatinIME/src/com/android/inputmethod/latin/car/ |
D | KeyboardView.java | 983 private void showPreview(int keyIndex) { in showPreview() argument 987 mCurrentKeyIndex = keyIndex; in showPreview() 1009 if (keyIndex == NOT_A_KEY) { in showPreview() 1015 if (keyIndex != NOT_A_KEY) { in showPreview() 1018 showKey(keyIndex); in showPreview() 1021 mHandler.obtainMessage(MSG_SHOW_PREVIEW, keyIndex, 0), in showPreview() 1028 private void showKey(final int keyIndex) { in showKey() argument 1031 if (keyIndex < 0 || keyIndex >= mKeys.length) return; in showKey() 1032 Key key = keys[keyIndex]; in showKey() 1123 public void invalidateKey(int keyIndex) { in invalidateKey() argument [all …]
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/ |
D | proximity_info.h | 42 int getCodePointOf(const int keyIndex) const; 43 int getOriginalCodePointOf(const int keyIndex) const; 44 bool hasSweetSpotData(const int keyIndex) const { in hasSweetSpotData() argument 47 return mSweetSpotRadii[keyIndex] > 0.0f; in hasSweetSpotData() 49 float getSweetSpotRadiiAt(int keyIndex) const { return mSweetSpotRadii[keyIndex]; } in getSweetSpotRadiiAt() argument 50 float getSweetSpotCenterXAt(int keyIndex) const { return mSweetSpotCenterXs[keyIndex]; } in getSweetSpotCenterXAt() argument 51 float getSweetSpotCenterYAt(int keyIndex) const { return mSweetSpotCenterYs[keyIndex]; } in getSweetSpotCenterYAt() argument
|
D | proximity_info.cpp | 139 int ProximityInfo::getCodePointOf(const int keyIndex) const { in getCodePointOf() 140 if (keyIndex < 0 || keyIndex >= KEY_COUNT) { in getCodePointOf() 143 return mKeyIndexToLowerCodePointG[keyIndex]; in getCodePointOf() 146 int ProximityInfo::getOriginalCodePointOf(const int keyIndex) const { in getOriginalCodePointOf() 147 if (keyIndex < 0 || keyIndex >= KEY_COUNT) { in getOriginalCodePointOf() 150 return mKeyIndexToOriginalCodePoint[keyIndex]; in getOriginalCodePointOf()
|
D | proximity_info_state.cpp | 37 const int keyIndex = mProximityInfo->getKeyIndexOf(primaryCodePoint); in getPrimaryOriginalCodePointAt() local 38 return mProximityInfo->getOriginalCodePointOf(keyIndex); in getPrimaryOriginalCodePointAt() 298 float ProximityInfoState::getProbability(const int index, const int keyIndex) const { in getProbability() 300 std::unordered_map<int, float>::const_iterator it = mCharProbabilities[index].find(keyIndex); in getProbability()
|
D | proximity_info_state_utils.cpp | 159 const std::vector<int> *const sampledInputYs, const int keyIndex, const int inputIndex) { in calculateSquaredDistanceFromSweetSpotCenter() argument 160 const float sweetSpotCenterX = proximityInfo->getSweetSpotCenterXAt(keyIndex); in calculateSquaredDistanceFromSweetSpotCenter() 161 const float sweetSpotCenterY = proximityInfo->getSweetSpotCenterYAt(keyIndex); in calculateSquaredDistanceFromSweetSpotCenter() 170 const std::vector<int> *const sampledInputYs, const int keyIndex, const int inputIndex) { in calculateNormalizedSquaredDistance() argument 171 if (keyIndex == NOT_AN_INDEX) { in calculateNormalizedSquaredDistance() 174 if (!proximityInfo->hasSweetSpotData(keyIndex)) { in calculateNormalizedSquaredDistance() 181 sampledInputXs, sampledInputYs, keyIndex, inputIndex); in calculateNormalizedSquaredDistance() 183 proximityInfo->getSweetSpotRadiiAt(keyIndex)); in calculateNormalizedSquaredDistance()
|
D | proximity_info_utils.h | 165 const int keyIndex = getKeyIndexOf(keyCount, c, codeToKeyMap); in calculateProximities() local 167 keyIndex, x, y); in calculateProximities() 169 keyWidths, keyHeights, keyIndex, x, y); in calculateProximities()
|
D | proximity_info_state_utils.h | 153 const std::vector<int> *const sampledInputYs, const int keyIndex, 157 const std::vector<int> *const sampledInputYs, const int keyIndex, const int inputIndex);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
D | ProximityInfo.java | 159 for (int infoIndex = 0, keyIndex = 0; keyIndex < sortedKeys.size(); keyIndex++) { in createNativeProximityInfo() 160 final Key key = sortedKeys.get(keyIndex); in createNativeProximityInfo() 183 for (int infoIndex = 0, keyIndex = 0; keyIndex < sortedKeys.size(); keyIndex++) { in createNativeProximityInfo() 184 final Key key = sortedKeys.get(keyIndex); in createNativeProximityInfo()
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/ |
D | typing_weighting.cpp | 43 const int keyIndex = traverseSession->getProximityInfo()->getKeyIndexOf( in getErrorType() local 59 if (keyIndex == NOT_AN_INDEX) { in getErrorType() 70 if (keyIndex == NOT_AN_INDEX) { in getErrorType()
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
D | DefaultSoftKeyboardJAJP.java | 462 int keyIndex = (KEY_NUMBER_12KEY < keys.size()) in changeKeyboard() local 464 mChangeModeKey = keys.get(keyIndex); in changeKeyboard()
|