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

/frameworks/base/core/java/android/widget/
H A DEditor.java134 int mInputType = EditorInfo.TYPE_NULL; field in class:Editor
495 // mInputType has been set from inputType, possibly modified by mInputMethod.
496 // Specialize mInputType to [web]password if we have a text class and the original input
498 if ((mInputType & EditorInfo.TYPE_MASK_CLASS) == EditorInfo.TYPE_CLASS_TEXT) {
500 mInputType = (mInputType & ~(EditorInfo.TYPE_MASK_VARIATION))
504 mInputType = (mInputType & ~(EditorInfo.TYPE_MASK_VARIATION))
507 } else if ((mInputType & EditorInfo.TYPE_MASK_CLASS) == EditorInfo.TYPE_CLASS_NUMBER) {
509 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;
426 mInputType = inputType;
435 outAttrs.inputType = mInputType;

Completed in 36 milliseconds