Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLInputElement.cpp123 , m_inputType(InputType::createText(*this)) in HTMLInputElement()
124 , m_inputTypeView(m_inputType) in HTMLInputElement()
197 if (!m_inputType->canSetStringValue()) { in isValidValue()
201 return !m_inputType->typeMismatchFor(value) in isValidValue()
202 && !m_inputType->stepMismatch(value) in isValidValue()
203 && !m_inputType->rangeUnderflow(value) in isValidValue()
204 && !m_inputType->rangeOverflow(value) in isValidValue()
206 && !m_inputType->patternMismatch(value) in isValidValue()
207 && !m_inputType->valueMissing(value); in isValidValue()
217 return willValidate() && m_inputType->typeMismatch(); in typeMismatch()
[all …]
DHTMLInputElement.h400 RefPtr<InputType> m_inputType; variable
/external/chromium_org/third_party/WebKit/Source/core/events/
DTextEvent.h55 bool isLineBreak() const { return m_inputType == TextEventInputLineBreak; } in isLineBreak()
56 bool isComposition() const { return m_inputType == TextEventInputComposition; } in isComposition()
57 bool isBackTab() const { return m_inputType == TextEventInputBackTab; } in isBackTab()
58 bool isPaste() const { return m_inputType == TextEventInputPaste; } in isPaste()
59 bool isDrop() const { return m_inputType == TextEventInputDrop; } in isDrop()
72 TextEventInputType m_inputType; variable
DTextEvent.cpp60 : m_inputType(TextEventInputKeyboard) in TextEvent()
69 , m_inputType(inputType) in TextEvent()
81 , m_inputType(TextEventInputPaste) in TextEvent()