HomeSort by relevance Sort by last modified time
    Searched refs:InputType (Results 1 - 25 of 211) sorted by null

1 2 3 4 5 6 7 8 9

  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
LinesEditor.java 19 import android.text.InputType;
25 return InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_MULTI_LINE;
IntEditor.java 19 import android.text.InputType;
29 return InputType.TYPE_CLASS_NUMBER;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
InputAttributes.java 22 import android.text.InputType;
55 final int inputType = null != editorInfo ? editorInfo.inputType : 0;
56 final int inputClass = inputType & InputType.TYPE_MASK_CLASS;
57 mInputType = inputType;
58 mIsPasswordField = InputTypeUtils.isPasswordInputType(inputType)
59 || InputTypeUtils.isVisiblePasswordInputType(inputType);
60 if (inputClass != InputType.TYPE_CLASS_TEXT) {
67 } else if (InputType.TYPE_NULL == inputType)
    [all...]
  /frameworks/base/core/java/android/text/method/
DateKeyListener.java 20 import android.text.InputType;
32 return InputType.TYPE_CLASS_DATETIME
33 | InputType.TYPE_DATETIME_VARIATION_DATE;
DateTimeKeyListener.java 19 import android.text.InputType;
32 return InputType.TYPE_CLASS_DATETIME
33 | InputType.TYPE_DATETIME_VARIATION_NORMAL;
TimeKeyListener.java 20 import android.text.InputType;
32 return InputType.TYPE_CLASS_DATETIME
33 | InputType.TYPE_DATETIME_VARIATION_TIME;
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputType.cpp 29 #include "core/html/forms/InputType.h"
78 typedef PassRefPtrWillBeRawPtr<InputType> (*InputTypeFactoryFunction)(HTMLInputElement&);
115 PassRefPtrWillBeRawPtr<InputType> InputType::create(HTMLInputElement& element, const AtomicString& typeName)
123 PassRefPtrWillBeRawPtr<InputType> InputType::createText(HTMLInputElement& element)
128 const AtomicString& InputType::normalizeTypeName(const AtomicString& typeName)
136 InputType::~InputType()
140 bool InputType::isTextField() cons
    [all...]
BaseClickableWithKeyInputType.h 34 #include "core/html/forms/InputType.h"
39 class BaseClickableWithKeyInputType : public InputType {
43 static void handleKeyupEvent(InputType&, KeyboardEvent*);
47 BaseClickableWithKeyInputType(HTMLInputElement& element) : InputType(element) { }
HiddenInputType.h 34 #include "core/html/forms/InputType.h"
38 class HiddenInputType FINAL : public InputType {
40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
43 HiddenInputType(HTMLInputElement& element) : InputType(element) { }
ButtonInputType.cpp 39 PassRefPtrWillBeRawPtr<InputType> ButtonInputType::create(HTMLInputElement& element)
BaseCheckableInputType.h 34 #include "core/html/forms/InputType.h"
39 class BaseCheckableInputType : public InputType {
41 BaseCheckableInputType(HTMLInputElement& element) : InputType(element) { }
ButtonInputType.h 40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
ResetInputType.h 40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
TelephoneInputType.cpp 39 PassRefPtrWillBeRawPtr<InputType> TelephoneInputType::create(HTMLInputElement& element)
TelephoneInputType.h 40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
TextInputType.h 40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
URLInputType.h 40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
HiddenInputType.cpp 46 PassRefPtrWillBeRawPtr<InputType> HiddenInputType::create(HTMLInputElement& element)
106 return InputType::appendFormData(encoding, isMultipartForm);
CheckboxInputType.h 40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
PasswordInputType.h 40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
ResetInputType.cpp 44 PassRefPtrWillBeRawPtr<InputType> ResetInputType::create(HTMLInputElement& element)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
InputTypeUtils.java 19 import android.text.InputType;
22 public final class InputTypeUtils implements InputType {
34 InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS,
35 InputType.TYPE_TEXT_VARIATION_PASSWORD,
36 InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD,
37 InputType.TYPE_TEXT_VARIATION_WEB_PASSWORD };
44 private static boolean isWebEditTextInputType(final int inputType) {
45 return inputType == (TYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_WEB_EDIT_TEXT);
48 private static boolean isWebPasswordInputType(final int inputType) {
50 && inputType == WEB_TEXT_PASSWORD_INPUT_TYPE
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
cStringIO.h 60 PyTypeObject *InputType, *OutputType;
66 (Py_TYPE(O)==PycStringIO->InputType)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
cStringIO.h 60 PyTypeObject *InputType, *OutputType;
66 (Py_TYPE(O)==PycStringIO->InputType)
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
TextInputWizardFragment.java 24 import android.text.InputType;
45 public static final int INPUT_TYPE_NORMAL = InputType.TYPE_CLASS_TEXT
46 | InputType.TYPE_TEXT_VARIATION_NORMAL;
47 public static final int INPUT_TYPE_PASSWORD = InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS
48 | InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD;
49 public static final int INPUT_TYPE_EMAIL = InputType.TYPE_CLASS_TEXT
50 | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS;
51 public static final int INPUT_TYPE_NO_SUGGESTIONS = InputType.TYPE_CLASS_TEXT
52 | InputType.TYPE_TEXT_VARIATION_NORMAL | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS
    [all...]

Completed in 601 milliseconds

1 2 3 4 5 6 7 8 9