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

  /external/webkit/Source/WebCore/dom/
OptionElement.h 33 class OptionElement {
35 virtual ~OptionElement() { }
57 // and pass it to the static helper functions in OptionElement
78 OptionElement* toOptionElement(Element*);
OptionElement.cpp 22 #include "OptionElement.h"
40 void OptionElement::setSelectedState(OptionElementData& data, Element* element, bool selected)
49 int OptionElement::optionIndex(SelectElement* selectElement, const Element* element)
70 String OptionElement::collectOptionLabelOrText(const OptionElementData& data, const Element* element)
83 String OptionElement::collectOptionInnerText(const Element* element)
100 String OptionElement::normalizeText(const Document* document, const String& src)
112 String OptionElement::collectOptionTextRespectingGroupLabel(const OptionElementData& data, const Element* element)
121 String OptionElement::collectOptionValue(const OptionElementData& data, const Element* element)
141 OptionElement* toOptionElement(Element* element)
SelectElement.cpp 37 #include "OptionElement.h"
170 OptionElement* optionElement = toOptionElement(items[i]);
171 lastOnChangeSelection.append(optionElement && optionElement->selected());
185 OptionElement* optionElement = toOptionElement(items[i]);
186 cachedStateForActiveSelection.append(optionElement && optionElement->selected());
206 OptionElement* optionElement = toOptionElement(items[i])
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLOptionElement.cpp 72 select->accessKeySetSelectedIndex(OptionElement::optionIndex(select, this));
136 OptionElement::setSelectedState(m_data, this, selected);
146 return OptionElement::collectOptionValue(m_data, this);
151 return OptionElement::collectOptionLabelOrText(m_data, this);
156 return OptionElement::collectOptionTextRespectingGroupLabel(m_data, this);
180 /* Dummy implementation, as disabled() is pure virtual in OptionElement class */
WMLOptionElement.h 25 #include "OptionElement.h"
31 class WMLOptionElement : public WMLFormControlElement, public WMLEventHandlingElement, public OptionElement {
WMLSelectElement.cpp 28 #include "OptionElement.h"
375 if (OptionElement* optionElement = toOptionElement(items[listIndex]))
376 pageState->storeVariable(name, optionElement->value());
397 OptionElement* optionElement = toOptionElement(items[i]);
398 if (!optionElement)
402 if (!optionElement->selected())
411 nameString += optionElement->value();
475 if (OptionElement* optionElement = toOptionElement(items[i]))
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLOptionElement.cpp 113 return OptionElement::collectOptionLabelOrText(m_data, this);
138 return OptionElement::optionIndex(ownerSelectElement(), this);
155 return OptionElement::collectOptionValue(m_data, this);
175 OptionElement::setSelectedState(m_data, this, selected);
183 OptionElement::setSelectedState(m_data, this, selected);
236 return OptionElement::collectOptionTextRespectingGroupLabel(m_data, this);
HTMLOptionElement.h 28 #include "OptionElement.h"
34 class HTMLOptionElement : public HTMLFormControlElement, public OptionElement {
  /external/webkit/Source/WebCore/rendering/
RenderMenuList.cpp 35 #include "OptionElement.h"
146 OptionElement* optionElement = toOptionElement(element);
147 if (!optionElement)
150 String text = optionElement->textIndentedToRespectGroupLabel();
195 if (OptionElement* optionElement = toOptionElement(element)) {
196 text = optionElement->textIndentedToRespectGroupLabel();
357 else if (OptionElement* optionElement = toOptionElement(element)
    [all...]
RenderListBox.cpp 46 #include "OptionElement.h"
109 if (OptionElement* optionElement = toOptionElement(element))
110 text = optionElement->textIndentedToRespectGroupLabel();
319 OptionElement* optionElement = toOptionElement(listItems[i]);
320 if (optionElement && !optionElement->disabled()) {
363 OptionElement* optionElement = toOptionElement(element)
    [all...]
  /external/webkit/Source/WebCore/
Android.mk 168 dom/OptionElement.cpp \
    [all...]

Completed in 128 milliseconds