Searched refs:ScriptUtils (Results 1 – 7 of 7) sorted by relevance
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
D | RichInputConnectionAndTextRangeTests.java | 37 import com.android.inputmethod.latin.utils.ScriptUtils; 245 r = ic.getWordRangeAtCursor(SPACE, ScriptUtils.SCRIPT_LATIN); in testGetWordRangeAtCursor() 251 r = ic.getWordRangeAtCursor(TAB, ScriptUtils.SCRIPT_LATIN); in testGetWordRangeAtCursor() 259 r = ic.getWordRangeAtCursor(SUPPLEMENTARY_CHAR, ScriptUtils.SCRIPT_LATIN); in testGetWordRangeAtCursor() 267 r = ic.getWordRangeAtCursor(SUPPLEMENTARY_CHAR, ScriptUtils.SCRIPT_LATIN); in testGetWordRangeAtCursor() 275 r = ic.getWordRangeAtCursor(SUPPLEMENTARY_CHAR, ScriptUtils.SCRIPT_GREEK); in testGetWordRangeAtCursor() 307 r = ic.getWordRangeAtCursor(SPACE, ScriptUtils.SCRIPT_LATIN); in helpTestGetSuggestionSpansAtWord() 319 r = ic.getWordRangeAtCursor(SPACE, ScriptUtils.SCRIPT_LATIN); in helpTestGetSuggestionSpansAtWord() 332 r = ic.getWordRangeAtCursor(SPACE, ScriptUtils.SCRIPT_LATIN); in helpTestGetSuggestionSpansAtWord() 344 r = ic.getWordRangeAtCursor(SPACE, ScriptUtils.SCRIPT_LATIN); in helpTestGetSuggestionSpansAtWord() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/ |
D | AndroidSpellCheckerService.java | 49 import com.android.inputmethod.latin.utils.ScriptUtils; 164 case ScriptUtils.SCRIPT_LATIN: in getKeyboardLayoutNameForScript() 166 case ScriptUtils.SCRIPT_CYRILLIC: in getKeyboardLayoutNameForScript() 168 case ScriptUtils.SCRIPT_GREEK: in getKeyboardLayoutNameForScript() 323 final int script = ScriptUtils.getScriptFromSpellCheckerLocale(locale); in createKeyboardForLocale()
|
D | AndroidWordLevelSpellCheckerSession.java | 40 import com.android.inputmethod.latin.utils.ScriptUtils; 121 mScript = ScriptUtils.getScriptFromSpellCheckerLocale(mLocale); in onCreate() 156 if (!ScriptUtils.isLetterPartOfScript(firstCodePoint, script) in getCheckabilityInScript() 177 if (ScriptUtils.isLetterPartOfScript(codePoint, script)) ++letterCount; in getCheckabilityInScript()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
D | KeyboardLayoutSet.java | 43 import com.android.inputmethod.latin.utils.ScriptUtils; 116 int mScriptId = ScriptUtils.SCRIPT_LATIN; 392 ScriptUtils.SCRIPT_LATIN); in parseKeyboardLayoutSetFeature()
|
D | KeyboardSwitcher.java | 43 import com.android.inputmethod.latin.utils.ScriptUtils; 392 return ScriptUtils.SCRIPT_UNKNOWN; in getCurrentKeyboardScriptId()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | RichInputConnection.java | 40 import com.android.inputmethod.latin.utils.ScriptUtils; 635 && ScriptUtils.isLetterPartOfScript(codePoint, scriptId)); in isPartOfCompositionForScript()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
D | ScriptUtils.java | 25 public class ScriptUtils { class
|