Home | History | Annotate | Download | only in widget

Lines Matching refs:mInputType

1093                 mEditor.mInputType = inputType != EditorInfo.TYPE_NULL
1097 mEditor.mInputType = EditorInfo.TYPE_CLASS_TEXT;
1105 mEditor.mInputType = inputType != EditorInfo.TYPE_NULL
1114 mEditor.mInputType = inputType = EditorInfo.TYPE_CLASS_PHONE;
1126 mEditor.mInputType = inputType;
1155 mEditor.mInputType = inputType;
1160 mEditor.mInputType = EditorInfo.TYPE_NULL;
1168 mEditor.mInputType = EditorInfo.TYPE_CLASS_TEXT;
1249 (mEditor.mInputType & (EditorInfo.TYPE_MASK_CLASS | EditorInfo.TYPE_MASK_VARIATION))
1556 mEditor.mInputType = mEditor.mKeyListener.getInputType();
1558 mEditor.mInputType = EditorInfo.TYPE_CLASS_TEXT;
1564 if (mEditor != null) mEditor.mInputType = EditorInfo.TYPE_NULL;
4031 mEditor.mInputType = type;
4087 return mEditor == null ? EditorInfo.TYPE_NULL : mEditor.mInputType;
4860 // mInputType should already be EditorInfo.TYPE_NULL and mInput should be null
5351 (mEditor.mInputType & EditorInfo.TYPE_MASK_CLASS) == EditorInfo.TYPE_CLASS_TEXT) {
5352 int variation = mEditor.mInputType & EditorInfo.TYPE_MASK_VARIATION;
5368 (mEditor.mInputType & EditorInfo.TYPE_MASK_CLASS) == EditorInfo.TYPE_CLASS_TEXT) {
5369 int variation = mEditor.mInputType & EditorInfo.TYPE_MASK_VARIATION;
5624 return mEditor != null && mEditor.mInputType != EditorInfo.TYPE_NULL;
7008 * Adds or remove the EditorInfo.TYPE_TEXT_FLAG_MULTI_LINE on the mInputType.
7013 (mEditor.mInputType & EditorInfo.TYPE_MASK_CLASS) == EditorInfo.TYPE_CLASS_TEXT) {
7015 mEditor.mInputType &= ~EditorInfo.TYPE_TEXT_FLAG_MULTI_LINE;
7017 mEditor.mInputType |= EditorInfo.TYPE_TEXT_FLAG_MULTI_LINE;
8298 if ((mEditor.mInputType & InputType.TYPE_MASK_CLASS) != InputType.TYPE_CLASS_TEXT) {
8301 if ((mEditor.mInputType & InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS) > 0) return false;
8303 final int variation = mEditor.mInputType & EditorInfo.TYPE_MASK_VARIATION;