Home
last modified time | relevance | path

Searched refs:WebOptionElement (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DWebOptionElement.cpp45 void WebOptionElement::setValue(const WebString& newValue) in setValue()
50 WebString WebOptionElement::value() const in value()
55 int WebOptionElement::index() const in index()
60 WebString WebOptionElement::text() const in text()
65 WebString WebOptionElement::label() const in label()
70 bool WebOptionElement::isEnabled() const in isEnabled()
75 WebOptionElement::WebOptionElement(const PassRefPtr<HTMLOptionElement>& elem) in WebOptionElement() function in blink::WebOptionElement
80 WebOptionElement& WebOptionElement::operator=(const PassRefPtr<HTMLOptionElement>& elem) in operator =()
86 WebOptionElement::operator PassRefPtr<HTMLOptionElement>() const in operator PassRefPtr<HTMLOptionElement>()
Dweb.gypi194 'WebOptionElement.cpp',
Dwebkit.target.linux-x86.mk216 third_party/WebKit/Source/web/WebOptionElement.cpp \
Dwebkit.target.darwin-mips.mk216 third_party/WebKit/Source/web/WebOptionElement.cpp \
Dwebkit.target.darwin-x86.mk216 third_party/WebKit/Source/web/WebOptionElement.cpp \
Dwebkit.target.linux-arm.mk216 third_party/WebKit/Source/web/WebOptionElement.cpp \
Dwebkit.target.linux-mips.mk216 third_party/WebKit/Source/web/WebOptionElement.cpp \
Dwebkit.target.darwin-arm.mk216 third_party/WebKit/Source/web/WebOptionElement.cpp \
/external/chromium_org/third_party/WebKit/public/web/
DWebOptionElement.h44 class WebOptionElement : public WebElement {
46 WebOptionElement() : WebElement() { } in WebOptionElement() function
47 WebOptionElement(const WebOptionElement& element) : WebElement(element) { } in WebOptionElement() function
49 WebOptionElement& operator=(const WebOptionElement& element)
54 void assign(const WebOptionElement& element) { WebElement::assign(element); } in assign()
65 WebOptionElement(const WTF::PassRefPtr<WebCore::HTMLOptionElement>&);
66 WebOptionElement& operator=(const WTF::PassRefPtr<WebCore::HTMLOptionElement>&);
/external/chromium/webkit/glue/
Dform_field.cc19 using WebKit::WebOptionElement;
58 option_strings.push_back(list_items[i].to<WebOptionElement>().value()); in FormField()
/external/chromium_org/components/autofill/content/renderer/
Dautofill_agent.cc54 using blink::WebOptionElement;
89 for (WebOptionElement option = options.firstItem().to<WebOptionElement>(); in GetDataListSuggestions()
90 !option.isNull(); option = options.nextItem().to<WebOptionElement>()) { in GetDataListSuggestions()
Dform_autofill_util.cc45 using blink::WebOptionElement;
455 const WebOptionElement option = list_items[i].toConst<WebOptionElement>(); in GetOptionStringsFromElement()
810 const WebOptionElement option_element = in WebFormControlElementToFormField()
811 list_items[i].toConst<WebOptionElement>(); in WebFormControlElementToFormField()