HomeSort by relevance Sort by last modified time
    Searched refs:CharUtils (Results 1 - 25 of 44) sorted by null

1 2

  /packages/inputmethods/LatinIME/native/jni/tests/utils/
char_utils_test.cpp 27 EXPECT_TRUE(CharUtils::isAsciiUpper('A'));
28 EXPECT_TRUE(CharUtils::isAsciiUpper('Z'));
29 EXPECT_FALSE(CharUtils::isAsciiUpper('a'));
30 EXPECT_FALSE(CharUtils::isAsciiUpper('z'));
31 EXPECT_FALSE(CharUtils::isAsciiUpper('@'));
32 EXPECT_FALSE(CharUtils::isAsciiUpper(' '));
33 EXPECT_FALSE(CharUtils::isAsciiUpper(0x00C0 /* LATIN CAPITAL LETTER A WITH GRAVE */));
34 EXPECT_FALSE(CharUtils::isAsciiUpper(0x00E0 /* LATIN SMALL LETTER A WITH GRAVE */));
35 EXPECT_FALSE(CharUtils::isAsciiUpper(0x03C2 /* GREEK SMALL LETTER FINAL SIGMA */));
36 EXPECT_FALSE(CharUtils::isAsciiUpper(0x0410 /* CYRILLIC CAPITAL LETTER A */))
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_weighting.cpp 49 } else if (CharUtils::toLowerCase(primaryCodePoint) ==
50 CharUtils::toLowerCase(nodeCodePoint)) {
53 } else if (primaryCodePoint == CharUtils::toBaseCodePoint(nodeCodePoint)) {
56 } else if (CharUtils::toBaseCodePoint(primaryCodePoint)
57 == CharUtils::toBaseCodePoint(nodeCodePoint)) {
63 } else if (CharUtils::toLowerCase(primaryCodePoint)
64 == CharUtils::toBaseLowerCase(nodeCodePoint)) {
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_traversal.h 69 CharUtils::toBaseLowerCase(childDicNode->getNodeCodePoint());
71 CharUtils::toBaseLowerCase(traverseSession->getProximityInfoState(0)
  /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());
digraph_utils.cpp 110 const int compositeGlyphLowerCodePoint = CharUtils::toLowerCase(compositeGlyphCodePoint);
  /packages/inputmethods/LatinIME/native/jni/src/utils/
char_utils.h 28 class CharUtils {
116 DISALLOW_IMPLICIT_CONSTRUCTORS(CharUtils);
jni_data_utils.h 82 if (!CharUtils::isInUnicodeSpace(codePoint)) {
char_utils.cpp 25 const int CharUtils::MIN_UNICODE_CODE_POINT = 0;
26 const int CharUtils::MAX_UNICODE_CODE_POINT = 0x10FFFF;
53 const unsigned short myLowerC = CharUtils::latin_tolower(c);
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.cpp 176 if (CharUtils::isIntentionalOmissionCodePoint(codePoint)) {
204 const int baseLowerC = CharUtils::toBaseLowerCase(codePoint);
216 if (CharUtils::toBaseLowerCase(firstCodePoint) == baseLowerC) {
266 const int lowerCodePoint = CharUtils::toLowerCase(codePoint);
267 const int baseLowerCodePoint = CharUtils::toBaseCodePoint(lowerCodePoint);
proximity_info.cpp 157 const int lowerCode = CharUtils::toLowerCase(code);
proximity_info_utils.h 41 const int lowerCode = CharUtils::toLowerCase(c);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node.h 189 return CharUtils::isAsciiUpper(c);
256 return CharUtils::getSpaceCount(mDicNodeState.mDicNodeStateOutput.getCodePointBuf(),
314 return CharUtils::isIntentionalOmissionCodePoint(getNodeCodePoint());
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/property/
ngram_context.cpp 99 codePointCount = CharUtils::attachBeginningOfSentenceMarker(codePoints, codePointCount,
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
dynamic_pt_reading_helper.cpp 219 searchCodePoints[i] = forceLowerCaseSearch ? CharUtils::toLowerCase(inWord[i]) : inWord[i];
pt_node_params.h 164 return getCodePointCount() > 0 && !CharUtils::isInUnicodeSpace(getCodePoints()[0])
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/header/
header_policy.h 103 mAttributeMap(), mLocale(CharUtils::EMPTY_STRING), mMultiWordCostMultiplier(0.0f),
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/
ver4_patricia_trie_policy.cpp 209 codePointCountToAdd = CharUtils::attachBeginningOfSentenceMarker(codePointsToAdd,
530 ngramPrevWordsCodePointCount[i] = CharUtils::removeBeginningOfSentenceMarker(
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
patricia_trie_policy.cpp 418 if (CharUtils::isInUnicodeSpace(mergedNodeCodePoints[0])) {
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
ver4_patricia_trie_policy.cpp 296 codePointCountToAdd = CharUtils::attachBeginningOfSentenceMarker(codePointsToAdd,
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 345 codePointCount = CharUtils::attachBeginningOfSentenceMarker(
    [all...]
  /prebuilts/tools/common/m2/repository/commons-lang/commons-lang/2.4/
commons-lang-2.4.jar 
  /external/libphonenumber/demo/war/WEB-INF/lib/
commons-lang-2.6.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
commons-lang-2.6.jar 

Completed in 246 milliseconds

1 2