Searched refs:firstCodePoint (Results 1 - 3 of 3) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
H A Dproximity_info_state.cpp203 const int firstCodePoint = currentCodePoints[0]; local
208 if (firstCodePoint == baseLowerC || firstCodePoint == codePoint) {
216 if (CharUtils::toBaseLowerCase(firstCodePoint) == baseLowerC) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
H A DAndroidWordLevelSpellCheckerSession.java154 final int firstCodePoint = text.codePointAt(0);
156 if (!ScriptUtils.isLetterPartOfScript(firstCodePoint, script)
157 && '\'' != firstCodePoint) return CHECKABILITY_FIRST_LETTER_UNCHECKABLE;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
H A DInputLogic.java1259 final int firstCodePoint =
1262 if (canBeFollowedByDoubleSpacePeriod(firstCodePoint)) {
1756 final int firstCodePoint = word.codePointAt(0);
1757 return settings.isWordCodePoint(firstCodePoint)
1758 && Constants.CODE_SINGLE_QUOTE != firstCodePoint
1759 && Constants.CODE_DASH != firstCodePoint;

Completed in 93 milliseconds