HomeSort by relevance Sort by last modified time
    Searched refs:WebElementCollection (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/web/
WebElementCollection.cpp 33 #include "public/web/WebElementCollection.h"
44 void WebElementCollection::reset()
49 void WebElementCollection::assign(const WebElementCollection& other)
54 WebElementCollection::WebElementCollection(const PassRefPtrWillBeRawPtr<HTMLCollection>& col)
59 WebElementCollection& WebElementCollection::operator=(const PassRefPtrWillBeRawPtr<HTMLCollection>& col)
65 unsigned WebElementCollection::length() const
70 WebElement WebElementCollection::nextItem() cons
    [all...]
WebInputElement.cpp 43 #include "public/web/WebElementCollection.h"
120 WebElementCollection WebInputElement::dataListOptions() const
123 return WebElementCollection(dataList->options());
124 return WebElementCollection();
WebNodeTest.cpp 10 #include "public/web/WebElementCollection.h"
39 WebElementCollection collection = node.getElementsByTagName("label");
WebNode.cpp 53 #include "public/web/WebElementCollection.h"
197 WebElementCollection WebNode::getElementsByTagName(const WebString& tag) const
203 return WebElementCollection(toContainerNode(m_private.get())->getElementsByTagNameNS(HTMLNames::xhtmlNamespaceURI, tag));
205 return WebElementCollection();
WebDocument.cpp 62 #include "public/web/WebElementCollection.h"
160 WebElementCollection WebDocument::all()
162 return WebElementCollection(unwrap<Document>()->all());
blink_web.target.darwin-arm.mk 174 third_party/WebKit/Source/web/WebElementCollection.cpp \
blink_web.target.darwin-arm64.mk 174 third_party/WebKit/Source/web/WebElementCollection.cpp \
blink_web.target.darwin-mips.mk 174 third_party/WebKit/Source/web/WebElementCollection.cpp \
blink_web.target.darwin-x86.mk 174 third_party/WebKit/Source/web/WebElementCollection.cpp \
blink_web.target.darwin-x86_64.mk 174 third_party/WebKit/Source/web/WebElementCollection.cpp \
blink_web.target.linux-arm.mk 174 third_party/WebKit/Source/web/WebElementCollection.cpp \
blink_web.target.linux-arm64.mk 174 third_party/WebKit/Source/web/WebElementCollection.cpp \
blink_web.target.linux-mips.mk 174 third_party/WebKit/Source/web/WebElementCollection.cpp \
blink_web.target.linux-x86.mk 174 third_party/WebKit/Source/web/WebElementCollection.cpp \
  /external/chromium_org/third_party/WebKit/public/web/
WebElementCollection.h 48 class WebElementCollection {
50 ~WebElementCollection() { reset(); }
52 WebElementCollection() : m_current(0) { }
53 WebElementCollection(const WebElementCollection& n) { assign(n); }
54 WebElementCollection& operator=(const WebElementCollection& n)
63 BLINK_EXPORT void assign(const WebElementCollection&);
70 WebElementCollection(const PassRefPtrWillBeRawPtr<WebCore::HTMLCollection>&);
71 WebElementCollection& operator=(const PassRefPtrWillBeRawPtr<WebCore::HTMLCollection>&)
    [all...]
WebInputElement.h 42 class WebElementCollection;
78 BLINK_EXPORT WebElementCollection dataListOptions() const;
WebDocument.h 60 class WebElementCollection;
107 BLINK_EXPORT WebElementCollection all();
WebNode.h 47 class WebElementCollection;
116 BLINK_EXPORT WebElementCollection getElementsByTagName(const WebString&) const;
  /external/chromium_org/content/renderer/
savable_resources.cc 16 #include "third_party/WebKit/public/web/WebElementCollection.h"
25 using blink::WebElementCollection;
134 WebElementCollection all = current_doc.all();
dom_serializer_browsertest.cc 30 #include "third_party/WebKit/public/web/WebElementCollection.h"
42 using blink::WebElementCollection;
76 WebElementCollection all = current_frame->document().all();
614 WebElementCollection all = doc.all();
    [all...]
  /external/chromium_org/chrome/renderer/safe_browsing/
malware_dom_details.cc 14 #include "third_party/WebKit/public/web/WebElementCollection.h"
74 blink::WebElementCollection elements = document.all();
phishing_dom_feature_extractor.cc 21 #include "third_party/WebKit/public/web/WebElementCollection.h"
95 blink::WebElementCollection elements;
  /external/chromium_org/android_webview/renderer/
aw_render_view_ext.cc 25 #include "third_party/WebKit/public/web/WebElementCollection.h"
61 blink::WebElementCollection collection = element.getElementsByTagName("img");
  /external/chromium_org/components/autofill/content/renderer/
autofill_agent.cc 38 #include "third_party/WebKit/public/web/WebElementCollection.h"
53 using blink::WebElementCollection;
76 WebElementCollection options = element.dataListOptions();
form_autofill_util.cc 24 #include "third_party/WebKit/public/web/WebElementCollection.h"
39 using blink::WebElementCollection;
    [all...]

Completed in 1754 milliseconds

1 2