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

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/utils/
damerau_levenshtein_edit_distance_policy.h 34 const int c0 = CharUtils::toBaseLowerCase(mString0[index0]);
35 const int c1 = CharUtils::toBaseLowerCase(mString1[index1]);
48 const int c0 = CharUtils::toBaseLowerCase(mString0[index0]);
49 const int c1 = CharUtils::toBaseLowerCase(mString1[index1]);
50 if (index0 > 0 && index1 > 0 && c0 == CharUtils::toBaseLowerCase(mString1[index1 - 1])
51 && c1 == CharUtils::toBaseLowerCase(mString0[index0 - 1])) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_weighting.h 78 CharUtils::toBaseLowerCase(dicNode->getNodeCodePoint()));
106 const int primaryCodePoint = CharUtils::toBaseLowerCase(
108 const int dicNodeChar = CharUtils::toBaseLowerCase(dicNode->getNodeCodePoint());
117 parentPointIndex + 1, CharUtils::toBaseLowerCase(prevCodePoint));
120 parentPointIndex, CharUtils::toBaseLowerCase(codePoint));
137 insertedPointIndex + 1, CharUtils::toBaseLowerCase(dicNode->getNodeCodePoint()));
typing_traversal.h 68 CharUtils::toBaseLowerCase(childDicNode->getNodeCodePoint());
70 CharUtils::toBaseLowerCase(traverseSession->getProximityInfoState(0)
  /packages/inputmethods/LatinIME/native/jni/src/utils/
char_utils.h 52 static AK_FORCE_INLINE int toBaseLowerCase(const int c) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.cpp 198 const int baseLowerC = CharUtils::toBaseLowerCase(codePoint);
210 if (CharUtils::toBaseLowerCase(firstCodePoint) == baseLowerC) {

Completed in 57 milliseconds