Searched defs:autotext (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/text/method/
H A DMultiTapKeyListener.java61 boolean autotext) {
63 mAutoText = autotext;
70 public static MultiTapKeyListener getInstance(boolean autotext, argument
72 int off = cap.ordinal() * 2 + (autotext ? 1 : 0);
75 sInstance[off] = new MultiTapKeyListener(cap, autotext);
60 MultiTapKeyListener(Capitalize cap, boolean autotext) argument
H A DTextKeyListener.java68 * @param autotext whether to automatically do spelling corrections.
70 public TextKeyListener(Capitalize cap, boolean autotext) { argument
72 mAutoText = autotext;
80 * @param autotext whether to automatically do spelling corrections.
82 public static TextKeyListener getInstance(boolean autotext, argument
84 int off = cap.ordinal() * 2 + (autotext ? 1 : 0);
87 sInstance[off] = new TextKeyListener(cap, autotext);
155 * Clear all the input state (autotext, autocap, multitap, undo)

Completed in 72 milliseconds