Home
last modified time | relevance | path

Searched refs:HTMLCollection (Results 1 – 25 of 84) sorted by relevance

1234

/external/webkit/Source/WebCore/html/
DHTMLCollection.cpp39 HTMLCollection::HTMLCollection(PassRefPtr<Node> base, CollectionType type) in HTMLCollection() function in WebCore::HTMLCollection
48 HTMLCollection::HTMLCollection(PassRefPtr<Node> base, CollectionType type, CollectionCache* info) in HTMLCollection() function in WebCore::HTMLCollection
57 PassRefPtr<HTMLCollection> HTMLCollection::create(PassRefPtr<Node> base, CollectionType type) in create()
59 return adoptRef(new HTMLCollection(base, type)); in create()
62 HTMLCollection::~HTMLCollection() in ~HTMLCollection()
68 void HTMLCollection::resetCollectionInfo() const in resetCollectionInfo()
90 Element* HTMLCollection::itemAfter(Element* previous) const in itemAfter()
205 unsigned HTMLCollection::calcLength() const in calcLength()
215 unsigned HTMLCollection::length() const in length()
225 Node* HTMLCollection::item(unsigned index) const in item()
[all …]
DHTMLCollection.h40 class HTMLCollection : public RefCounted<HTMLCollection> {
42 static PassRefPtr<HTMLCollection> create(PassRefPtr<Node> base, CollectionType);
43 virtual ~HTMLCollection();
63 HTMLCollection(PassRefPtr<Node> base, CollectionType, CollectionCache*);
64 HTMLCollection(PassRefPtr<Node> base, CollectionType);
DHTMLTableRowElement.cpp123 RefPtr<HTMLCollection> children = cells(); in insertCell()
146 RefPtr<HTMLCollection> children = cells(); in deleteCell()
157 PassRefPtr<HTMLCollection> HTMLTableRowElement::cells() in cells()
159 return HTMLCollection::create(this, TRCells); in cells()
162 void HTMLTableRowElement::setCells(HTMLCollection*, ExceptionCode& ec) in setCells() argument
DHTMLTableSectionElement.cpp66 RefPtr<HTMLCollection> children = rows(); in insertRow()
88 RefPtr<HTMLCollection> children = rows(); in deleteRow()
152 PassRefPtr<HTMLCollection> HTMLTableSectionElement::rows() in rows()
154 return HTMLCollection::create(this, TSectionRows); in rows()
DHTMLTableElement.h33 class HTMLCollection; variable
60 PassRefPtr<HTMLCollection> rows();
61 PassRefPtr<HTMLCollection> tBodies();
DHTMLDataListElement.cpp50 PassRefPtr<HTMLCollection> HTMLDataListElement::options() in options()
52 return HTMLCollection::create(this, DataListOptions); in options()
DHTMLTableRowElement.h47 PassRefPtr<HTMLCollection> cells();
48 void setCells(HTMLCollection *, ExceptionCode&);
DHTMLMapElement.cpp85 RefPtr<HTMLCollection> coll = document()->images(); in imageElement()
129 PassRefPtr<HTMLCollection> HTMLMapElement::areas() in areas()
131 return HTMLCollection::create(this, MapAreas); in areas()
DHTMLDocument.idl31 readonly attribute HTMLCollection embeds;
32 readonly attribute HTMLCollection plugins;
33 readonly attribute HTMLCollection scripts;
DHTMLElement.h31 class HTMLCollection; variable
38 PassRefPtr<HTMLCollection> children();
DHTMLTableElement.idl28 readonly attribute HTMLCollection rows;
29 readonly attribute HTMLCollection tBodies;
DHTMLAllCollection.h33 class HTMLAllCollection : public HTMLCollection {
DHTMLAllCollection.cpp39 : HTMLCollection(base, DocAll) in HTMLAllCollection()
DHTMLDataListElement.h46 PassRefPtr<HTMLCollection> options();
DHTMLTableRowsCollection.h39 class HTMLTableRowsCollection : public HTMLCollection {
DHTMLOptionsCollection.h36 class HTMLOptionsCollection : public HTMLCollection {
DHTMLNameCollection.h33 class HTMLNameCollection : public HTMLCollection {
DHTMLTableSectionElement.h54 PassRefPtr<HTMLCollection> rows();
DHTMLMapElement.h45 PassRefPtr<HTMLCollection> areas();
/external/webkit/Source/WebKit/chromium/src/
DWebNodeCollection.cpp51 HTMLCollection* p = const_cast<HTMLCollection*>(other.m_private); in assign()
57 WebNodeCollection::WebNodeCollection(const PassRefPtr<HTMLCollection>& col) in WebNodeCollection()
58 : m_private(static_cast<HTMLCollection*>(col.releaseRef())) in WebNodeCollection()
62 void WebNodeCollection::assign(HTMLCollection* p) in assign()
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8HTMLCollectionCustom.cpp44 static v8::Handle<v8::Value> getNamedItems(HTMLCollection* collection, AtomicString name) in getNamedItems()
58 static v8::Handle<v8::Value> getItem(HTMLCollection* collection, v8::Handle<v8::Value> argument) in getItem()
92 HTMLCollection* imp = V8HTMLCollection::toNative(info.Holder()); in namedPropertyGetter()
99 HTMLCollection* imp = V8HTMLCollection::toNative(args.Holder()); in itemCallback()
106 HTMLCollection* imp = V8HTMLCollection::toNative(args.Holder()); in namedItemCallback()
121 HTMLCollection* imp = V8HTMLCollection::toNative(args.Holder()); in callAsFunctionCallback()
145 v8::Handle<v8::Value> toV8(HTMLCollection* impl) in toV8()
/external/webkit/Source/WebKit/chromium/public/
DWebNodeCollection.h36 namespace WebCore { class HTMLCollection; } variable
65 WebNodeCollection(const WTF::PassRefPtr<WebCore::HTMLCollection>&);
69 void assign(WebCore::HTMLCollection*);
70 WebCore::HTMLCollection* m_private;
/external/webkit/Source/WebCore/bindings/js/
DJSHTMLCollectionCustom.cpp65 HTMLCollection* collection = jsCollection->impl(); in callHTMLCollection()
105 bool JSHTMLCollection::canGetItemsForName(ExecState*, HTMLCollection* collection, const Identifier&… in canGetItemsForName()
132 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, HTMLCollection* collection) in toJS()
150 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, HTMLCollection, collection); in toJS()
/external/webkit/Source/WebCore/dom/
DDocument.h84 class HTMLCollection; variable
379 PassRefPtr<HTMLCollection> images();
380 PassRefPtr<HTMLCollection> embeds();
381 PassRefPtr<HTMLCollection> plugins(); // an alias for embeds() required for the JS DOM bindings.
382 PassRefPtr<HTMLCollection> applets();
383 PassRefPtr<HTMLCollection> links();
384 PassRefPtr<HTMLCollection> forms();
385 PassRefPtr<HTMLCollection> anchors();
386 PassRefPtr<HTMLCollection> objects();
387 PassRefPtr<HTMLCollection> scripts();
[all …]
DDocument.idl170 readonly attribute HTMLCollection images;
171 readonly attribute HTMLCollection applets;
172 readonly attribute HTMLCollection links;
173 readonly attribute HTMLCollection forms;
174 readonly attribute HTMLCollection anchors;

1234