Searched refs:ScriptUtils (Results 1 – 7 of 7) sorted by relevance
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
D | RichInputConnectionAndTextRangeTests.java | 43 import com.android.inputmethod.latin.utils.ScriptUtils; 258 r = ic.getWordRangeAtCursor(SPACE, ScriptUtils.SCRIPT_LATIN); in testGetWordRangeAtCursor() 264 r = ic.getWordRangeAtCursor(TAB, ScriptUtils.SCRIPT_LATIN); in testGetWordRangeAtCursor() 272 r = ic.getWordRangeAtCursor(SUPPLEMENTARY_CHAR, ScriptUtils.SCRIPT_LATIN); in testGetWordRangeAtCursor() 280 r = ic.getWordRangeAtCursor(SUPPLEMENTARY_CHAR, ScriptUtils.SCRIPT_LATIN); in testGetWordRangeAtCursor() 288 r = ic.getWordRangeAtCursor(SUPPLEMENTARY_CHAR, ScriptUtils.SCRIPT_GREEK); in testGetWordRangeAtCursor() 321 r = ic.getWordRangeAtCursor(SPACE, ScriptUtils.SCRIPT_LATIN); in helpTestGetSuggestionSpansAtWord() 333 r = ic.getWordRangeAtCursor(SPACE, ScriptUtils.SCRIPT_LATIN); in helpTestGetSuggestionSpansAtWord() 346 r = ic.getWordRangeAtCursor(SPACE, ScriptUtils.SCRIPT_LATIN); in helpTestGetSuggestionSpansAtWord() 358 r = ic.getWordRangeAtCursor(SPACE, ScriptUtils.SCRIPT_LATIN); in helpTestGetSuggestionSpansAtWord() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/ |
D | AndroidSpellCheckerService.java | 40 import com.android.inputmethod.latin.utils.ScriptUtils; 112 final int script = ScriptUtils.getScriptFromSpellCheckerLocale(locale); in getKeyboardLayoutNameForLocale() 114 case ScriptUtils.SCRIPT_LATIN: in getKeyboardLayoutNameForLocale() 116 case ScriptUtils.SCRIPT_CYRILLIC: in getKeyboardLayoutNameForLocale() 118 case ScriptUtils.SCRIPT_GREEK: in getKeyboardLayoutNameForLocale() 120 case ScriptUtils.SCRIPT_HEBREW: in getKeyboardLayoutNameForLocale()
|
D | AndroidWordLevelSpellCheckerSession.java | 40 import com.android.inputmethod.latin.utils.ScriptUtils; 119 mScript = ScriptUtils.getScriptFromSpellCheckerLocale(mLocale); in onCreate() 154 if (!ScriptUtils.isLetterPartOfScript(firstCodePoint, script) in getCheckabilityInScript() 175 if (ScriptUtils.isLetterPartOfScript(codePoint, script)) ++letterCount; in getCheckabilityInScript()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
D | KeyboardLayoutSet.java | 44 import com.android.inputmethod.latin.utils.ScriptUtils; 126 int mScriptId = ScriptUtils.SCRIPT_LATIN; 362 return ScriptUtils.SCRIPT_LATIN; in readScriptId() 372 ScriptUtils.SCRIPT_UNKNOWN); in readScriptIdFromTagFeature()
|
D | KeyboardSwitcher.java | 45 import com.android.inputmethod.latin.utils.ScriptUtils; 499 return ScriptUtils.SCRIPT_UNKNOWN; in getCurrentKeyboardScriptId()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
D | ScriptUtils.java | 25 public class ScriptUtils { class
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | RichInputConnection.java | 44 import com.android.inputmethod.latin.utils.ScriptUtils; 692 && ScriptUtils.isLetterPartOfScript(codePoint, scriptId)); in isPartOfCompositionForScript()
|