Searched defs:inputType (Results 1 - 4 of 4) sorted by relevance

/packages/apps/VideoEditor/src/com/android/videoeditor/
H A DAlertDialogs.java87 * @param inputType Input type
96 DialogInterface.OnCancelListener cancelListener, int inputType, int maxChars,
119 if (inputType != InputType.TYPE_NULL) {
120 textInput.setInputType(inputType);
93 createEditDialog(Context context, String title, String text, String positiveButtonText, DialogInterface.OnClickListener positiveListener, String negativeButtonText, DialogInterface.OnClickListener negativeListener, DialogInterface.OnCancelListener cancelListener, int inputType, int maxChars, String hint) argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
H A DInputTypeCompatUtils.java63 private static boolean isWebEditTextInputType(int inputType) { argument
64 return inputType == (InputType.TYPE_CLASS_TEXT
68 private static boolean isWebPasswordInputType(int inputType) { argument
70 && inputType == WEB_TEXT_PASSWORD_INPUT_TYPE;
73 private static boolean isWebEmailAddressInputType(int inputType) { argument
75 && inputType == WEB_TEXT_EMAIL_ADDRESS_INPUT_TYPE;
78 private static boolean isNumberPasswordInputType(int inputType) { argument
80 && inputType == NUMBER_PASSWORD_INPUT_TYPE;
83 private static boolean isTextPasswordInputType(int inputType) { argument
84 return inputType
97 isWebInputType(int inputType) argument
105 isPasswordInputType(int inputType) argument
113 isVisiblePasswordInputType(int inputType) argument
[all...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DContactsSource.java297 public int inputType; field in class:ContactsSource.EditField
306 public EditField(String column, int titleRes, int inputType) { argument
308 this.inputType = inputType;
/packages/apps/Contacts/src/com/android/contacts/model/
H A DAccountType.java408 public int inputType; field in class:AccountType.EditField
419 public EditField(String column, int titleRes, int inputType) { argument
421 this.inputType = inputType;
445 return (inputType & EditorInfo.TYPE_TEXT_FLAG_MULTI_LINE) != 0;
454 + " inputType=" + inputType

Completed in 148 milliseconds