HomeSort by relevance Sort by last modified time
    Searched refs:InputType (Results 26 - 50 of 124) sorted by null

12 3 4 5

  /external/webkit/Source/WebCore/html/
ResetInputType.h 40 static PassOwnPtr<InputType> create(HTMLInputElement*);
SearchInputType.cpp 38 PassOwnPtr<InputType> SearchInputType::create(HTMLInputElement* element)
SubmitInputType.h 40 static PassOwnPtr<InputType> create(HTMLInputElement*);
TelephoneInputType.cpp 38 PassOwnPtr<InputType> TelephoneInputType::create(HTMLInputElement* element)
TimeInputType.h 40 static PassOwnPtr<InputType> create(HTMLInputElement*);
URLInputType.h 40 static PassOwnPtr<InputType> create(HTMLInputElement*);
WeekInputType.h 40 static PassOwnPtr<InputType> create(HTMLInputElement*);
HiddenInputType.cpp 39 PassOwnPtr<InputType> HiddenInputType::create(HTMLInputElement* element)
ImageInputType.h 45 static PassOwnPtr<InputType> create(HTMLInputElement*);
MonthInputType.h 40 static PassOwnPtr<InputType> create(HTMLInputElement*);
PasswordInputType.cpp 40 PassOwnPtr<InputType> PasswordInputType::create(HTMLInputElement* element)
RadioInputType.h 40 static PassOwnPtr<InputType> create(HTMLInputElement*);
ResetInputType.cpp 43 PassOwnPtr<InputType> ResetInputType::create(HTMLInputElement* element)
URLInputType.cpp 41 PassOwnPtr<InputType> URLInputType::create(HTMLInputElement* element)
InputType.h 71 // An InputType object represents the type-specific part of an HTMLInputElement.
72 // Do not expose instances of InputType and classes derived from it to classes
74 class InputType {
75 WTF_MAKE_NONCOPYABLE(InputType); WTF_MAKE_FAST_ALLOCATED;
77 static PassOwnPtr<InputType> create(HTMLInputElement*, const String&);
78 static PassOwnPtr<InputType> createText(HTMLInputElement*);
79 virtual ~InputType();
232 // Parses the specified string for this InputType, and returns true if it
244 InputType(HTMLInputElement* element) : m_element(element) { }
251 // Raw pointer because the HTMLInputElement object owns this InputType object
    [all...]
FileInputType.h 44 static PassOwnPtr<InputType> create(HTMLInputElement*);
DateTimeLocalInputType.cpp 46 PassOwnPtr<InputType> DateTimeLocalInputType::create(HTMLInputElement* element)
65 InputType::setValueAsDate(value, ec);
BaseButtonInputType.cpp 88 InputType::accessKeyAction(sendToAnyElement);
BaseCheckableInputType.cpp 88 InputType::accessKeyAction(sendToAnyElement);
  /frameworks/base/core/java/android/text/method/
DigitsKeyListener.java 19 import android.text.InputType;
114 int contentType = InputType.TYPE_CLASS_NUMBER;
116 contentType |= InputType.TYPE_NUMBER_FLAG_SIGNED;
119 contentType |= InputType.TYPE_NUMBER_FLAG_DECIMAL;
DialerKeyListener.java 21 import android.text.InputType;
44 return InputType.TYPE_CLASS_PHONE;
BaseKeyListener.java 128 int contentType = InputType.TYPE_CLASS_TEXT;
131 contentType |= InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS;
134 contentType |= InputType.TYPE_TEXT_FLAG_CAP_WORDS;
137 contentType |= InputType.TYPE_TEXT_FLAG_CAP_SENTENCES;
141 contentType |= InputType.TYPE_TEXT_FLAG_AUTO_CORRECT;
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
SoftKeyboard.java 22 import android.text.InputType;
156 switch (attribute.inputType & InputType.TYPE_MASK_CLASS) {
157 case InputType.TYPE_CLASS_NUMBER:
158 case InputType.TYPE_CLASS_DATETIME:
164 case InputType.TYPE_CLASS_PHONE:
170 case InputType.TYPE_CLASS_TEXT:
180 int variation = attribute.inputType & InputType.TYPE_MASK_VARIATION;
181 if (variation == InputType.TYPE_TEXT_VARIATION_PASSWORD |
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
vertexconversion.h 157 typedef InT InputType;
162 static void convertArray(const InputType *in, std::size_t stride, std::size_t n, OutputType *out)
166 const InputType *ein = pointerAddBytes(in, i * stride);
179 return convertArray(static_cast<const InputType*>(in), stride, n, static_cast<OutputType*>(out));
190 static void copyComponent(OutputType *out, const InputType *in, std::size_t elementindex, OutputType defaultvalue)
  /cts/tests/tests/text/src/android/text/method/cts/
DateKeyListenerTest.java 29 import android.text.InputType;
101 int expected = InputType.TYPE_CLASS_DATETIME
102 | InputType.TYPE_DATETIME_VARIATION_DATE;

Completed in 444 milliseconds

12 3 4 5