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

  /external/webkit/Source/WebCore/dom/
InputElement.h 35 class InputElement {
37 virtual ~InputElement() { }
66 // Returns true if the specified string can be set as the value of InputElement.
85 static String sanitizeValueForTextField(const InputElement*, const String&);
88 static void dispatchFocusEvent(InputElement*, Element*);
89 static void dispatchBlurEvent(InputElement*, Element*);
90 static void updateFocusAppearance(InputElementData&, InputElement*, Element*, bool restorePreviousSelection);
91 static void updateSelectionRange(InputElement*, Element*, int start, int end);
92 static void aboutToUnload(InputElement*, Element*);
93 static void setValueFromRenderer(InputElementData&, InputElement*, Element*, const String&)
    [all...]
InputElement.cpp 22 #include "InputElement.h"
52 const int InputElement::s_maximumLength = 524288;
53 const int InputElement::s_defaultSize = 20;
55 void InputElement::dispatchFocusEvent(InputElement* inputElement, Element* element)
57 if (!inputElement->isTextField())
61 if (inputElement->isPasswordField() && document->frame())
65 void InputElement::dispatchBlurEvent(InputElement* inputElement, Element* element
    [all...]
CheckedRadioButtons.cpp 38 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(element);
41 if (!inputElement->checked())
47 pair<NameToInputMap::iterator, bool> result = m_nameToCheckedRadioButtonMap->add(element->name().impl(), inputElement);
52 if (oldCheckedButton == inputElement)
55 result.first->second = inputElement;
80 InputElement* inputElement = element->toInputElement();
81 ASSERT_UNUSED(inputElement, inputElement);
82 ASSERT(inputElement->isChecked())
    [all...]
Node.h 56 class InputElement;
545 virtual InputElement* toInputElement();
Node.cpp 565 InputElement* Node::toInputElement()
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLInputElement.cpp 78 InputElement::dispatchFocusEvent(this, this);
96 InputElement::dispatchBlurEvent(this, this);
102 InputElement::updateFocusAppearance(m_data, this, this, restorePreviousSelection);
107 InputElement::aboutToUnload(this, this);
158 InputElement::updateSelectionRange(this, this, max, max);
162 InputElement::notifyFormStateChanged(this);
167 /* InputElement class defines pure virtual function 'setValueForUser', which
174 InputElement::setValueFromRenderer(m_data, this, this, value);
227 InputElement::parseMaxLengthAttribute(m_data, this, this, attr);
229 InputElement::parseSizeAttribute(m_data, this, attr)
    [all...]
WMLInputElement.h 26 #include "InputElement.h"
32 class WMLInputElement : public WMLFormControlElement, public InputElement {
39 virtual InputElement* toInputElement() { return this; }
  /external/webkit/Source/WebKit/android/
RenderSkinRadio.cpp 32 #include "InputElement.h"
104 if (InputElement* inputElement = element->toInputElement()) {
105 checked = inputElement->isChecked();
  /external/webkit/Source/WebCore/html/
HTMLInputElement.h 28 #include "InputElement.h"
38 class HTMLInputElement : public HTMLTextFormControlElement, public InputElement {
45 virtual InputElement* toInputElement() { return this; }
TextFieldInputType.cpp 124 return InputElement::sanitizeValueForTextField(element(), proposedValue);
HTMLInputElement.cpp 405 InputElement::updateFocusAppearance(m_data, this, this, restorePreviousSelection);
412 InputElement::aboutToUnload(this, this);
422 InputElement::dispatchFocusEvent(this, this);
428 InputElement::dispatchBlurEvent(this, this);
488 InputElement::updateValueIfNeeded(m_data, this);
517 InputElement::notifyFormStateChanged(this);
611 InputElement::parseMaxLengthAttribute(m_data, this, this, attr);
614 InputElement::parseSizeAttribute(m_data, this, attr);
918 InputElement::updateSelectionRange(this, this, max, max);
937 InputElement::notifyFormStateChanged(this)
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderTextControlSingleLine.h 33 class InputElement;
145 InputElement* inputElement() const;
RenderTextControlSingleLine.cpp 36 #include "InputElement.h"
191 InputElement* input = inputElement();
193 // InputElement::handleBeforeTextInsertedEvent() has already called
476 shouldDrawCapsLockIndicator = inputElement()->isPasswordField()
558 int factor = inputElement()->size();
632 if (inputElement()->isSearchField()) {
640 if (inputElement()->isSpeechEnabled() && !m_speechButton) {
665 if (inputElement()->isSpeechEnabled() && !m_speechButton) {
672 bool hasSpinButton = inputElement()->hasSpinButton()
    [all...]
RenderTheme.cpp 758 InputElement* inputElement = o->node()->toInputElement();
759 if (!inputElement)
762 return inputElement->isChecked();
770 InputElement* inputElement = o->node()->toInputElement();
771 if (!inputElement)
774 return inputElement->isIndeterminate();
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebInputElement.cpp 176 InputElement* inputElement = webElement->unwrap<Element>()->toInputElement();
177 if (!inputElement)
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.cpp 39 #include "InputElement.h"
729 InputElement* inputElement = element->toInputElement();
730 if (!inputElement)
733 static_cast<HTMLInputElement*>(inputElement)->setAutofilled(autofilled);
742 InputElement* inputElement = element->toInputElement();
743 if (!inputElement)
749 inputElement->setValueForUser(String::fromUTF8(valueBuffer.get()));
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
FormManagerAndroid.cpp 42 #include "InputElement.h"
66 using WebCore::InputElement;
77 InputElement* input_element = node->toInputElement();
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AXObjectCache.cpp 62 #include "InputElement.h"
619 InputElement* inputElement = domNode->toInputElement();
620 if (inputElement && inputElement->isPasswordField())
AccessibilityRenderObject.cpp 499 InputElement* inputElement = m_renderer->node()->toInputElement();
500 if (!inputElement)
503 return inputElement->isPasswordField();
592 InputElement* inputElement = m_renderer->node()->toInputElement();
593 if (!inputElement)
596 return inputElement->isIndeterminate();
603 InputElement* input = elementNode->toInputElement();
618 InputElement* inputElement = m_renderer->node()->toInputElement()
    [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.cpp     [all...]
  /external/webkit/Source/WebCore/
Android.mk 151 dom/InputElement.cpp \
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.cpp     [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]

Completed in 1774 milliseconds