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

/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java572 private int mInputType = InputType.TYPE_NULL; field in class:AccessibilityNodeInfo
2304 return mInputType;
2322 mInputType = inputType;
2623 parcel.writeInt(mInputType);
2720 mInputType = other.mInputType;
2797 mInputType = parcel.readInt();
2863 mInputType = InputType.TYPE_NULL;
/frameworks/base/core/java/android/widget/
H A DEditor.java160 int mInputType = EditorInfo.TYPE_NULL; field in class:Editor
572 // mInputType has been set from inputType, possibly modified by mInputMethod.
573 // Specialize mInputType to [web]password if we have a text class and the original input
575 if ((mInputType & EditorInfo.TYPE_MASK_CLASS) == EditorInfo.TYPE_CLASS_TEXT) {
577 mInputType = (mInputType & ~(EditorInfo.TYPE_MASK_VARIATION))
581 mInputType = (mInputType & ~(EditorInfo.TYPE_MASK_VARIATION))
584 } else if ((mInputType & EditorInfo.TYPE_MASK_CLASS) == EditorInfo.TYPE_CLASS_NUMBER) {
586 mInputType
[all...]

Completed in 60 milliseconds