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

  /packages/inputmethods/LatinIME/native/jni/tests/utils/
char_utils_test.cpp 65 EXPECT_EQ('a', CharUtils::toBaseLowerCase('A'));
66 EXPECT_EQ('z', CharUtils::toBaseLowerCase('Z'));
67 EXPECT_EQ('a', CharUtils::toBaseLowerCase('a'));
68 EXPECT_EQ('z', CharUtils::toBaseLowerCase('z'));
69 EXPECT_EQ('@', CharUtils::toBaseLowerCase('@'));
70 EXPECT_EQ(' ', CharUtils::toBaseLowerCase(' '));
71 EXPECT_EQ('a', CharUtils::toBaseLowerCase(0x00C0 /* LATIN CAPITAL LETTER A WITH GRAVE */));
72 EXPECT_EQ('a', CharUtils::toBaseLowerCase(0x00E0 /* LATIN SMALL LETTER A WITH GRAVE */));
74 CharUtils::toBaseLowerCase(0x03C2 /* GREEK SMALL LETTER FINAL SIGMA */));
76 CharUtils::toBaseLowerCase(0x0410 /* CYRILLIC CAPITAL LETTER A */))
    [all...]
  /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/core/dictionary/
dictionary_utils.cpp 45 const int baseLowerCodePoint = CharUtils::toBaseLowerCase(codePoint);
80 const int codePoint = CharUtils::toBaseLowerCase(childDicNode->getNodeCodePoint());
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_weighting.h 80 CharUtils::toBaseLowerCase(dicNode->getNodeCodePoint()));
108 const int primaryCodePoint = CharUtils::toBaseLowerCase(
110 const int dicNodeChar = CharUtils::toBaseLowerCase(dicNode->getNodeCodePoint());
119 parentPointIndex + 1, CharUtils::toBaseLowerCase(prevCodePoint));
122 parentPointIndex, CharUtils::toBaseLowerCase(codePoint));
139 insertedPointIndex + 1, CharUtils::toBaseLowerCase(dicNode->getNodeCodePoint()));
typing_weighting.cpp 64 == CharUtils::toBaseLowerCase(nodeCodePoint)) {
typing_traversal.h 69 CharUtils::toBaseLowerCase(childDicNode->getNodeCodePoint());
71 CharUtils::toBaseLowerCase(traverseSession->getProximityInfoState(0)
  /packages/inputmethods/LatinIME/native/jni/src/utils/
char_utils.h 48 static AK_FORCE_INLINE int toBaseLowerCase(const int c) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.cpp 204 const int baseLowerC = CharUtils::toBaseLowerCase(codePoint);
216 if (CharUtils::toBaseLowerCase(firstCodePoint) == baseLowerC) {

Completed in 223 milliseconds