Lines Matching refs:inputType

782         int inputType = EditorInfo.TYPE_NULL;
1032 inputType = a.getInt(attr, EditorInfo.TYPE_NULL);
1115 inputType & (EditorInfo.TYPE_MASK_CLASS | EditorInfo.TYPE_MASK_VARIATION);
1141 mEditor.mInputType = inputType != EditorInfo.TYPE_NULL
1142 ? inputType
1153 mEditor.mInputType = inputType != EditorInfo.TYPE_NULL
1154 ? inputType : EditorInfo.TYPE_CLASS_TEXT;
1155 } else if (inputType != EditorInfo.TYPE_NULL) {
1156 setInputType(inputType, true);
1158 singleLine = !isMultilineInputType(inputType);
1162 mEditor.mInputType = inputType = EditorInfo.TYPE_CLASS_PHONE;
1167 inputType = EditorInfo.TYPE_CLASS_NUMBER;
1169 inputType |= EditorInfo.TYPE_NUMBER_FLAG_SIGNED;
1172 inputType |= EditorInfo.TYPE_NUMBER_FLAG_DECIMAL;
1174 mEditor.mInputType = inputType;
1178 inputType = EditorInfo.TYPE_CLASS_TEXT;
1183 inputType |= EditorInfo.TYPE_TEXT_FLAG_CAP_SENTENCES;
1188 inputType |= EditorInfo.TYPE_TEXT_FLAG_CAP_WORDS;
1193 inputType |= EditorInfo.TYPE_TEXT_FLAG_CAP_CHARACTERS;
1203 mEditor.mInputType = inputType;
1660 // Change inputType, without affecting transformation.
4217 * Set the type of the content with a constant as defined for {@link EditorInfo#inputType}. This
4273 * It would be better to rely on the input type for everything. A password inputType should have
4291 private static boolean isPasswordInputType(int inputType) {
4293 inputType & (EditorInfo.TYPE_MASK_CLASS | EditorInfo.TYPE_MASK_VARIATION);
4302 private static boolean isVisiblePasswordInputType(int inputType) {
4304 inputType & (EditorInfo.TYPE_MASK_CLASS | EditorInfo.TYPE_MASK_VARIATION);
5978 outAttrs.inputType = getInputType();
6009 if (isMultilineInputType(outAttrs.inputType)) {
8714 * user asks for them on these parts of the text. This value depends on the inputType of this
8728 * @return true if the suggestions popup window is enabled, based on the inputType.