Searched refs:mInputType (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DTextView.java1041 mEditor.mInputType = inputType != EditorInfo.TYPE_NULL
1045 mEditor.mInputType = EditorInfo.TYPE_CLASS_TEXT;
1053 mEditor.mInputType = inputType != EditorInfo.TYPE_NULL
1062 mEditor.mInputType = inputType = EditorInfo.TYPE_CLASS_PHONE;
1074 mEditor.mInputType = inputType;
1103 mEditor.mInputType = inputType;
1108 mEditor.mInputType = EditorInfo.TYPE_NULL;
1116 mEditor.mInputType = EditorInfo.TYPE_CLASS_TEXT;
1196 (mEditor.mInputType & (EditorInfo.TYPE_MASK_CLASS | EditorInfo.TYPE_MASK_VARIATION))
1502 mEditor.mInputType
[all...]
H A DEditor.java134 int mInputType = EditorInfo.TYPE_NULL; field in class:Editor
523 // mInputType has been set from inputType, possibly modified by mInputMethod.
524 // Specialize mInputType to [web]password if we have a text class and the original input
526 if ((mInputType & EditorInfo.TYPE_MASK_CLASS) == EditorInfo.TYPE_CLASS_TEXT) {
528 mInputType = (mInputType & ~(EditorInfo.TYPE_MASK_VARIATION))
532 mInputType = (mInputType & ~(EditorInfo.TYPE_MASK_VARIATION))
535 } else if ((mInputType & EditorInfo.TYPE_MASK_CLASS) == EditorInfo.TYPE_CLASS_NUMBER) {
537 mInputType
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java156 private int mInputType; field in class:WebViewClassic.WebViewInputConnection
172 int variation = mInputType & EditorInfo.TYPE_MASK_VARIATION;
420 mInputType = inputType;
429 outAttrs.inputType = mInputType;

Completed in 123 milliseconds