Searched refs:imeOptions (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
H A DEditorInfo.java44 * Set of bits in {@link #imeOptions} that provide alternative actions
97 * Flag of {@link #imeOptions}: used to specify that the IME does not need
110 * Flag of {@link #imeOptions}: used in conjunction with
121 * Flag of {@link #imeOptions}: used in conjunction with
132 * Flag of {@link #imeOptions}: used to request that the IME never go
140 * Generic unspecified type for {@link #imeOptions}.
148 public int imeOptions = IME_NULL; field in class:EditorInfo
247 + " imeOptions=0x" + Integer.toHexString(imeOptions)
271 dest.writeInt(imeOptions);
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebTextView.java866 int imeOptions = EditorInfo.IME_FLAG_NO_EXTRACT_UI
870 imeOptions |= EditorInfo.IME_ACTION_GO;
878 imeOptions |= EditorInfo.IME_ACTION_NONE;
882 imeOptions |= EditorInfo.IME_ACTION_GO;
885 imeOptions |= EditorInfo.IME_ACTION_SEARCH;
890 imeOptions |= EditorInfo.IME_ACTION_GO;
896 imeOptions |= EditorInfo.IME_ACTION_NEXT;
900 imeOptions |= EditorInfo.IME_ACTION_NEXT;
905 imeOptions |= EditorInfo.IME_ACTION_GO;
908 imeOptions |
[all...]
H A DWebView.java3894 outAttrs.imeOptions |= EditorInfo.IME_FLAG_NO_FULLSCREEN;
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java300 } else if ((ei.imeOptions&EditorInfo.IME_MASK_ACTION)
302 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
848 && (mInputEditorInfo.imeOptions & EditorInfo.IME_FLAG_NO_FULLSCREEN) != 0) {
1800 (!fromEnterKey || (ei.imeOptions &
1802 (ei.imeOptions & EditorInfo.IME_MASK_ACTION) !=
1809 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
1914 * {@link EditorInfo#imeOptions EditorInfo.imeOptions}. Returns null
1919 * @param imeOptions The value from @link EditorInfo#imeOptions EditorInf
1923 getTextForImeAction(int imeOptions) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java269 int imeOptions = EditorInfo.IME_NULL; field in class:TextView.InputContentType
694 mInputContentType.imeOptions = a.getInt(attr,
695 mInputContentType.imeOptions);
3067 * will be reported to an IME with {@link EditorInfo#imeOptions} when it
3073 public void setImeOptions(int imeOptions) { argument
3077 mInputContentType.imeOptions = imeOptions;
3088 ? mInputContentType.imeOptions : EditorInfo.IME_NULL;
4601 outAttrs.imeOptions = mInputContentType.imeOptions;
[all...]
H A DAbsListView.java3961 outAttrs.imeOptions = EditorInfo.IME_ACTION_DONE;

Completed in 141 milliseconds