Home | History | Annotate | Download | only in webkit

Lines Matching defs:inputType

37 import android.text.InputType;
865 | InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE);
1067 * element, set up the WebTextView, its InputType, and IME Options properly.
1069 * Does not correspond to HTMLInputElement::InputType so this
1077 int inputType = InputType.TYPE_CLASS_TEXT
1078 | InputType.TYPE_TEXT_VARIATION_WEB_EDIT_TEXT;
1082 inputType |= InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS;
1094 inputType |= InputType.TYPE_TEXT_FLAG_MULTI_LINE
1095 | InputType.TYPE_TEXT_FLAG_CAP_SENTENCES
1096 | InputType.TYPE_TEXT_FLAG_AUTO_CORRECT;
1100 inputType |= EditorInfo.TYPE_TEXT_VARIATION_WEB_PASSWORD;
1107 // inputType needs to be overwritten because of the different text variation.
1108 inputType = InputType.TYPE_CLASS_TEXT
1109 | InputType.TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS;
1113 // inputType needs to be overwritten because of the different class.
1114 inputType = InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_VARIATION_NORMAL
1115 | InputType.TYPE_NUMBER_FLAG_SIGNED | InputType.TYPE_NUMBER_FLAG_DECIMAL;
1121 // inputType needs to be overwritten because of the different class.
1122 inputType = InputType.TYPE_CLASS_PHONE;
1153 setInputType(inputType);