Searched defs:inputType (Results 1 - 6 of 6) sorted by path

/packages/apps/Contacts/src/com/android/contacts/model/account/
H A DAccountType.java446 public int inputType; field in class:AccountType.EditField
457 public EditField(String column, int titleRes, int inputType) { argument
459 this.inputType = inputType;
483 return (inputType & EditorInfo.TYPE_TEXT_FLAG_MULTI_LINE) != 0;
492 + " inputType=" + inputType
/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/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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DInputAttributes.java36 final int inputType = null != editorInfo ? editorInfo.inputType : 0;
37 final int inputClass = inputType & InputType.TYPE_MASK_CLASS;
38 mInputType = inputType;
46 } else if (InputType.TYPE_NULL == inputType) {
51 Log.w(TAG, String.format("Unexpected input class: inputType=0x%08x"
53 inputType, editorInfo.imeOptions));
60 final int variation = inputType & InputType.TYPE_MASK_VARIATION;
62 0 != (inputType & InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
64 0 != (inputType
108 dumpFlags(final int inputType) argument
[all...]
H A DInputTypeUtils.java43 private static boolean isWebEditTextInputType(final int inputType) { argument
44 return inputType == (TYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_WEB_EDIT_TEXT);
47 private static boolean isWebPasswordInputType(final int inputType) { argument
49 && inputType == WEB_TEXT_PASSWORD_INPUT_TYPE;
52 private static boolean isWebEmailAddressInputType(final int inputType) { argument
54 && inputType == WEB_TEXT_EMAIL_ADDRESS_INPUT_TYPE;
57 private static boolean isNumberPasswordInputType(final int inputType) { argument
59 && inputType == NUMBER_PASSWORD_INPUT_TYPE;
62 private static boolean isTextPasswordInputType(final int inputType) { argument
63 return inputType
75 isWebInputType(final int inputType) argument
83 isPasswordInputType(final int inputType) argument
91 isVisiblePasswordInputType(final int inputType) argument
97 isAutoSpaceFriendlyType(final int inputType) argument
[all...]
H A DRichInputConnection.java198 * This returns a bit set of TextUtils#CAP_MODE_*, masked by the inputType argument.
205 * @param inputType a mask of the caps modes to test for.
210 public int getCursorCapsMode(final int inputType, final Locale locale, argument
218 return (TextUtils.CAP_MODE_CHARACTERS | TextUtils.CAP_MODE_WORDS) & inputType;
221 return TextUtils.CAP_MODE_CHARACTERS & inputType;
235 return StringUtils.getCapsMode(mCommittedTextBeforeComposingText, inputType, locale,

Completed in 189 milliseconds