HomeSort by relevance Sort by last modified time
    Searched refs:m_inputType (Results 1 - 4 of 4) sorted by null

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

Completed in 289 milliseconds