Searched refs:m_inputType (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DHTMLInputElement.cpp85 , m_inputType(InputType::createText(this))
170 if (!m_inputType->canSetStringValue()) {
174 return !m_inputType->typeMismatchFor(value)
185 return m_inputType->typeMismatch();
192 return m_inputType->valueMissing(value);
197 return m_inputType->patternMismatch(value);
220 return m_inputType->rangeUnderflow(value);
225 return m_inputType->rangeOverflow(value);
230 return m_inputType->minimum();
235 return m_inputType
[all...]
H A DHTMLInputElement.h328 OwnPtr<InputType> m_inputType; member in class:WebCore::HTMLInputElement
/external/webkit/Source/WebCore/dom/
H A DTextEvent.h53 bool isLineBreak() const { return m_inputType == TextEventInputLineBreak; }
54 bool isComposition() const { return m_inputType == TextEventInputComposition; }
55 bool isBackTab() const { return m_inputType == TextEventInputBackTab; }
56 bool isPaste() const { return m_inputType == TextEventInputPaste; }
57 bool isDrop() const { return m_inputType == TextEventInputDrop; }
70 TextEventInputType m_inputType; member in class:WebCore::TextEvent
H A DTextEvent.cpp60 : m_inputType(TextEventInputKeyboard)
68 , m_inputType(inputType)
79 , m_inputType(TextEventInputPaste)

Completed in 78 milliseconds