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

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
LatinIMEForTests.java 19 public class LatinIMEForTests extends LatinIME {
InputTestsBase.java 49 protected LatinIME mLatinIME;
172 // We need to run the messages added to the handler from LatinIME. The only way to do
198 // type(int) and type(String): helper methods to send a code point resp. a string to LatinIME.
202 // They are supposed to be entirely deconnected from the input logic from LatinIME point of
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
EventInterpreter.java 24 import com.android.inputmethod.latin.LatinIME;
45 final LatinIME mLatinIme;
54 * @param latinIme a reference to the ime.
56 public EventInterpreter(final LatinIME latinIme) {
57 this(null, latinIme);
73 * @param latinIme a reference to the ime.
75 public EventInterpreter(final EventDecoderSpec specification, final LatinIME latinIme) {
83 mLatinIme = latinIme;
    [all...]
  /build/target/product/
large_emu_hw.mk 33 LatinIME \
generic_no_telephony.mk 34 LatinIME \
sdk.mk 48 LatinIME \
mini.mk 166 LatinIME \
  /packages/inputmethods/LatinIME/tools/dicttool/tests/etc/
test-dicttool.sh 26 DICTTOOL_UNITTEST=true mmm -j8 packages/inputmethods/LatinIME/tools/dicttool
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryPackInstallBroadcastReceiver.java 46 final LatinIME mService;
57 public DictionaryPackInstallBroadcastReceiver(final LatinIME service) {
LatinImeLogger.java 34 public static void init(LatinIME context) {
UserBinaryDictionary.java 106 if (null == uri || !(context instanceof LatinIME)) return;
110 ((LatinIME)context).onWordAddedToUserDictionary(changedWord);
LatinIME.java 93 public class LatinIME extends InputMethodService implements KeyboardActionListener,
96 private static final String TAG = LatinIME.class.getSimpleName();
116 // Double space: the state where the user pressed space twice quickly, which LatinIME
201 public static final class UIHandler extends StaticInnerHandlerWrapper<LatinIME> {
215 public UIHandler(final LatinIME outerInstance) {
231 final LatinIME latinIme = getOuterInstance();
232 final KeyboardSwitcher switcher = latinIme.mKeyboardSwitcher;
235 latinIme.updateSuggestionStrip();
241 latinIme.showGesturePreviewAndSuggestionStrip((SuggestedWords)msg.obj
    [all...]
Utils.java 156 if (!((LatinIME)mContext).isWordSeparator(c)) {
162 if (!((LatinIME)mContext).isWordSeparator(c)) {
RichInputConnection.java 55 * This variable contains the value LatinIME thinks the cursor position should be at now.
66 * This contains the currently composing text, as LatinIME thinks the TextView is seeing it.
106 ((LatinIME)mParent).debugDumpStateAndCrashWithException(context);
433 ((LatinIME)mParent).debugDumpStateAndCrashWithException(context);
701 * LatinIME's internal accounting. If this is not a belated expected update, then it should
    [all...]
  /packages/inputmethods/LatinIME/java/
Android.mk 22 LOCAL_PACKAGE_NAME := LatinIME
28 # We want to install libjni_latinime.so to the system partition if LatinIME gets installed.
  /packages/inputmethods/LatinIME/tests/
Android.mk 32 LOCAL_INSTRUMENTATION_FOR := LatinIME
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardSwitcher.java 36 import com.android.inputmethod.latin.LatinIME;
78 private LatinIME mLatinIME;
102 public static void init(final LatinIME latinIme) {
103 final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(latinIme);
104 sInstance.initInternal(latinIme, prefs);
107 private void initInternal(final LatinIME latinIme, final SharedPreferences prefs) {
108 mLatinIME = latinIme;
109 mResources = latinIme.getResources()
    [all...]
MainKeyboardView.java 64 import com.android.inputmethod.latin.LatinIME;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
ResearchLogger.java 65 import com.android.inputmethod.latin.LatinIME;
87 * Logs the use of the LatinIME keyboard.
172 // set when LatinIME should ignore an onUpdateSelection() callback that
179 // TODO: Check whether a superclass can be used instead of LatinIME.
180 /* package for test */ LatinIME mLatinIME;
209 public void init(final LatinIME latinIME, final KeyboardSwitcher keyboardSwitcher,
211 assert latinIME != null;
212 mLatinIME = latinIME;
213 mPrefs = PreferenceManager.getDefaultSharedPreferences(latinIME);
    [all...]

Completed in 262 milliseconds