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

/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DTextViewBindingObject.java39 private int mInputType = InputType.TYPE_CLASS_PHONE; field in class:TextViewBindingObject
191 return mInputType;
258 mInputType = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_CAP_WORDS;
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java620 private int mInputType = InputType.TYPE_NULL; field in class:AccessibilityNodeInfo
2389 return mInputType;
2407 mInputType = inputType;
2708 parcel.writeInt(mInputType);
2805 mInputType = other.mInputType;
2882 mInputType = parcel.readInt();
2950 mInputType = InputType.TYPE_NULL;
/frameworks/base/core/java/android/widget/
H A DTextView.java1206 mEditor.mInputType = inputType != EditorInfo.TYPE_NULL
1210 mEditor.mInputType = EditorInfo.TYPE_CLASS_TEXT;
1218 mEditor.mInputType = inputType != EditorInfo.TYPE_NULL
1227 mEditor.mInputType = inputType = EditorInfo.TYPE_CLASS_PHONE;
1239 mEditor.mInputType = inputType;
1268 mEditor.mInputType = inputType;
1273 mEditor.mInputType = EditorInfo.TYPE_NULL;
1281 mEditor.mInputType = EditorInfo.TYPE_CLASS_TEXT;
1381 (mEditor.mInputType & (EditorInfo.TYPE_MASK_CLASS | EditorInfo.TYPE_MASK_VARIATION))
1770 mEditor.mInputType
[all...]
H A DEditor.java179 int mInputType = EditorInfo.TYPE_NULL; field in class:Editor
687 // mInputType has been set from inputType, possibly modified by mInputMethod.
688 // Specialize mInputType to [web]password if we have a text class and the original input
690 if ((mInputType & EditorInfo.TYPE_MASK_CLASS) == EditorInfo.TYPE_CLASS_TEXT) {
692 mInputType = (mInputType & ~(EditorInfo.TYPE_MASK_VARIATION))
696 mInputType = (mInputType & ~(EditorInfo.TYPE_MASK_VARIATION))
699 } else if ((mInputType & EditorInfo.TYPE_MASK_CLASS) == EditorInfo.TYPE_CLASS_NUMBER) {
701 mInputType
[all...]

Completed in 252 milliseconds