Home
last modified time | relevance | path

Searched refs:WebElement (Results 1 – 25 of 101) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/web/
DWebElement.cpp48 bool WebElement::isFormControlElement() const in isFormControlElement()
53 bool WebElement::isTextFormControlElement() const in isTextFormControlElement()
58 WebString WebElement::tagName() const in tagName()
63 bool WebElement::hasHTMLTagName(const WebString& tagName) const in hasHTMLTagName()
74 bool WebElement::hasAttribute(const WebString& attrName) const in hasAttribute()
79 void WebElement::removeAttribute(const WebString& attrName) in removeAttribute()
87 WebString WebElement::getAttribute(const WebString& attrName) const in getAttribute()
92 bool WebElement::setAttribute(const WebString& attrName, const WebString& attrValue) in setAttribute()
102 unsigned WebElement::attributeCount() const in attributeCount()
109 WebNode WebElement::shadowRoot() const in shadowRoot()
[all …]
DWebDocument.cpp138 WebElement WebDocument::documentElement() const in documentElement()
140 return WebElement(constUnwrap<Document>()->documentElement()); in documentElement()
143 WebElement WebDocument::body() const in body()
145 return WebElement(constUnwrap<Document>()->body()); in body()
148 WebElement WebDocument::head() in head()
150 return WebElement(unwrap<Document>()->head()); in head()
163 void WebDocument::images(WebVector<WebElement>& results) in images()
167 Vector<WebElement> temp; in images()
172 temp.append(WebElement(element)); in images()
197 WebElement WebDocument::getElementById(const WebString& id) const in getElementById()
[all …]
DWebNode.cpp188 WebElement WebNode::querySelector(const WebString& tag, WebExceptionCode& ec) const in querySelector()
191 WebElement element; in querySelector()
198 WebElement WebNode::rootEditableElement() const in rootEditableElement()
200 return WebElement(m_private->rootEditableElement()); in rootEditableElement()
242 WebElement WebNode::shadowHost() const in shadowHost()
245 return WebElement(); in shadowHost()
247 return WebElement(coreNode->shadowHost()); in shadowHost()
DWebLabelElement.cpp41 WebElement WebLabelElement::correspondingControl() in correspondingControl()
43 return WebElement(unwrap<HTMLLabelElement>()->control()); in correspondingControl()
47 : WebElement(elem) in WebLabelElement()
DWebElementCollection.cpp68 WebElement WebElementCollection::nextItem() const in nextItem()
73 return WebElement(element); in nextItem()
76 WebElement WebElementCollection::firstItem() const in firstItem()
DWebSelectElement.cpp42 WebVector<WebElement> WebSelectElement::listItems() const in listItems()
45 WebVector<WebElement> items(sourceItems.size()); in listItems()
47 items[i] = WebElement(sourceItems[i].get()); in listItems()
/external/chromium_org/third_party/WebKit/public/web/
DWebElement.h43 class WebElement : public WebNode {
45 WebElement() : WebNode() { } in WebElement() function
46 WebElement(const WebElement& e) : WebNode(e) { } in WebElement() function
48 WebElement& operator=(const WebElement& e) { WebNode::assign(e); return *this; }
49 void assign(const WebElement& e) { WebNode::assign(e); } in assign()
86 WebElement(const PassRefPtrWillBeRawPtr<Element>&);
87 WebElement& operator=(const PassRefPtrWillBeRawPtr<Element>&);
DWebLabelElement.h45 class WebLabelElement : public WebElement {
47 WebLabelElement() : WebElement() { } in WebLabelElement()
48 WebLabelElement(const WebLabelElement& element) : WebElement(element) { } in WebLabelElement()
52 WebElement::assign(element);
56 void assign(const WebLabelElement& element) { WebElement::assign(element); } in assign()
58 BLINK_EXPORT WebElement correspondingControl();
DWebDocument.h57 class WebElement; variable
100 BLINK_EXPORT WebElement documentElement() const;
101 BLINK_EXPORT WebElement body() const;
102 BLINK_EXPORT WebElement head();
106 BLINK_EXPORT void images(WebVector<WebElement>&);
108 BLINK_EXPORT WebElement getElementById(const WebString&) const;
109 BLINK_EXPORT WebElement focusedElement() const;
112 BLINK_EXPORT WebElement fullScreenElement() const;
115 BLINK_EXPORT WebElement createElement(const WebString& tagName);
DWebOptionElement.h42 class WebOptionElement : public WebElement {
44 WebOptionElement() : WebElement() { } in WebOptionElement()
45 WebOptionElement(const WebOptionElement& element) : WebElement(element) { } in WebOptionElement()
49 WebElement::assign(element);
52 void assign(const WebOptionElement& element) { WebElement::assign(element); } in assign()
DWebFormElement.h45 class WebFormElement : public WebElement {
49 WebFormElement() : WebElement() { } in WebFormElement()
50 WebFormElement(const WebFormElement& element) : WebElement(element) { } in WebFormElement()
54 WebElement::assign(element);
57 void assign(const WebFormElement& element) { WebElement::assign(element); } in assign()
DWebFormControlElement.h43 class WebFormControlElement : public WebElement {
45 WebFormControlElement() : WebElement() { } in WebFormControlElement()
46 WebFormControlElement(const WebFormControlElement& e) : WebElement(e) { } in WebFormControlElement()
50 WebElement::assign(e);
53 void assign(const WebFormControlElement& e) { WebElement::assign(e); } in assign()
DWebElementCollection.h46 class WebElement; variable
67 BLINK_EXPORT WebElement nextItem() const;
68 BLINK_EXPORT WebElement firstItem() const;
DWebInputElement.h95 BLINK_EXPORT WebInputElement* toWebInputElement(WebElement*);
97 inline const WebInputElement* toWebInputElement(const WebElement* element) in toWebInputElement()
99 return toWebInputElement(const_cast<WebElement*>(element)); in toWebInputElement()
DWebNode.h44 class WebElement; variable
114 BLINK_EXPORT WebElement querySelector(const WebString&, WebExceptionCode&) const;
115 BLINK_EXPORT WebElement rootEditableElement() const;
126 BLINK_EXPORT WebElement shadowHost() const;
/external/chromium_org/chrome/renderer/safe_browsing/
Dphishing_dom_feature_extractor.h24 class WebElement; variable
91 void HandleLink(const blink::WebElement& element);
92 void HandleForm(const blink::WebElement& element);
93 void HandleImage(const blink::WebElement& element);
94 void HandleInput(const blink::WebElement& element);
95 void HandleScript(const blink::WebElement& element);
Dphishing_dom_feature_extractor.cc161 blink::WebElement cur_element; in ExtractFeaturesWithTimeout()
236 const blink::WebElement& element) { in HandleLink()
270 const blink::WebElement& element) { in HandleForm()
296 const blink::WebElement& element) { in HandleImage()
318 const blink::WebElement& element) { in HandleInput()
343 const blink::WebElement& element) { in HandleScript()
/external/chromium_org/chrome/renderer/pepper/
Dchrome_pdf_print_client.cc17 blink::WebElement GetWebElement(PP_Instance instance_id) { in GetWebElement()
21 return blink::WebElement(); in GetWebElement()
26 const blink::WebElement& element) { in GetPrintWebViewHelper()
42 blink::WebElement element = GetWebElement(instance_id); in IsPrintingEnabled()
48 blink::WebElement element = GetWebElement(instance_id); in Print()
/external/chromium_org/components/autofill/content/renderer/
Dpage_click_tracker.cc23 using blink::WebElement;
42 const WebElement element = node.toConst<WebElement>(); in GetTextWebInputElement()
57 const WebElement element = node.toConst<WebElement>(); in GetWebTextAreaElement()
Dform_autofill_util.cc38 using blink::WebElement;
57 bool IsOptionElement(const WebElement& element) { in IsOptionElement()
62 bool IsScriptElement(const WebElement& element) { in IsScriptElement()
67 bool IsNoScriptElement(const WebElement& element) { in IsNoScriptElement()
73 return node.isElementNode() && node.toConst<WebElement>().hasHTMLTagName(tag); in HasTagName()
139 const WebElement element = node.toConst<WebElement>(); in FindChildTextInner()
265 !parent.to<WebElement>().hasHTMLTagName(kListItem)) { in InferLabelFromListItem()
285 !parent.to<WebElement>().hasHTMLTagName(kTableCell)) { in InferLabelFromTableColumn()
314 !parent.to<WebElement>().hasHTMLTagName(kTableRow)) { in InferLabelFromTableRow()
381 !parent.to<WebElement>().hasHTMLTagName(kDefinitionData)) in InferLabelFromDefinitionList()
[all …]
/external/chromium_org/android_webview/renderer/
Daw_render_view_ext.cc45 base::string16 GetHref(const blink::WebElement& element) { in GetHref()
51 GURL GetAbsoluteSrcUrl(const blink::WebElement& element) { in GetAbsoluteSrcUrl()
57 blink::WebElement GetImgChild(const blink::WebElement& element) { in GetImgChild()
175 blink::WebVector<blink::WebElement> images; in OnDocumentHasImagesRequest()
244 blink::WebElement element = node.toConst<blink::WebElement>(); in FocusedNodeChanged()
255 const blink::WebElement child_img = GetImgChild(element); in FocusedNodeChanged()
/external/chromium_org/chrome/renderer/
Dweb_apps.cc31 using blink::WebElement;
71 void AddInstallIcon(const WebElement& link, in AddInstallIcon()
127 WebElement head = document.head(); in ParseWebAppFromWebDocument()
137 WebElement elem = child.to<WebElement>(); in ParseWebAppFromWebDocument()
Dchrome_render_view_observer.cc65 using blink::WebElement;
118 WebElement head = document.isNull() ? WebElement() : document.head(); in RetrieveMetaTagContent()
130 WebElement elem = child.to<WebElement>(); in RetrieveMetaTagContent()
453 WebElement head = frame->document().head(); in HasRefreshMetaTag()
465 WebElement element = node.to<WebElement>(); in HasRefreshMetaTag()
/external/chromium_org/content/renderer/
Dsavable_resources.cc24 using blink::WebElement;
67 const WebElement& element, in GetSavableResourceLinkForElement()
136 for (WebElement element = all.firstItem(); !element.isNull(); in GetAllSavableResourceLinksForFrame()
147 WebString GetSubResourceLinkFromElement(const WebElement& element) { in GetSubResourceLinkFromElement()
Ddom_serializer_browsertest.cc41 using blink::WebElement;
77 for (WebElement element = all.firstItem(); in FindSubFrameByURL()
105 const WebElement meta = node.toConst<WebElement>(); in IsMetaElement()
371 WebElement head_element = doc.head(); in SerializeHTMLDOMWithNoMetaCharsetInOriginalDocOnRenderer()
423 WebElement head_ele = doc.head(); in SerializeHTMLDOMWithMultipleMetaCharsetInOriginalDocOnRenderer()
489 WebElement body_ele = doc.body(); in SerializeHTMLDOMWithEntitiesInTextOnRenderer()
544 WebElement body_ele = doc.body(); in SerializeHTMLDOMWithEntitiesInAttributeValueOnRenderer()
579 WebElement body_element = doc.body(); in SerializeHTMLDOMWithNonStandardEntitiesOnRenderer()
616 for (WebElement element = all.firstItem(); !element.isNull(); in SerializeHTMLDOMWithBaseTagOnRenderer()
665 WebElement element = node.to<WebElement>(); in SerializeHTMLDOMWithBaseTagOnRenderer()
[all …]

12345