Home
last modified time | relevance | path

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

1234

/external/webkit/WebCore/html/
DHTMLCollection.cpp38 HTMLCollection::HTMLCollection(PassRefPtr<Node> base, CollectionType type) in HTMLCollection() function in WebCore::HTMLCollection
47 HTMLCollection::HTMLCollection(PassRefPtr<Node> base, CollectionType type, CollectionCache* info) in HTMLCollection() function in WebCore::HTMLCollection
56 PassRefPtr<HTMLCollection> HTMLCollection::create(PassRefPtr<Node> base, CollectionType type) in create()
58 return adoptRef(new HTMLCollection(base, type)); in create()
61 HTMLCollection::~HTMLCollection() in ~HTMLCollection()
67 void HTMLCollection::resetCollectionInfo() const in resetCollectionInfo()
89 Element* HTMLCollection::itemAfter(Element* previous) const in itemAfter()
196 unsigned HTMLCollection::calcLength() const in calcLength()
206 unsigned HTMLCollection::length() const in length()
216 Node* HTMLCollection::item(unsigned index) const in item()
[all …]
DHTMLCollection.h43 class HTMLCollection : public RefCounted<HTMLCollection> {
45 static PassRefPtr<HTMLCollection> create(PassRefPtr<Node> base, CollectionType);
46 virtual ~HTMLCollection();
66 HTMLCollection(PassRefPtr<Node> base, CollectionType, CollectionCache*);
74 HTMLCollection(PassRefPtr<Node> base, CollectionType);
DHTMLTableRowElement.cpp135 RefPtr<HTMLCollection> children = cells(); in insertCell()
158 RefPtr<HTMLCollection> children = cells(); in deleteCell()
169 PassRefPtr<HTMLCollection> HTMLTableRowElement::cells() in cells()
171 return HTMLCollection::create(this, TRCells); in cells()
174 void HTMLTableRowElement::setCells(HTMLCollection *, ExceptionCode& ec) in setCells() argument
DHTMLTableSectionElement.cpp82 RefPtr<HTMLCollection> children = rows(); in insertRow()
104 RefPtr<HTMLCollection> children = rows(); in deleteRow()
168 PassRefPtr<HTMLCollection> HTMLTableSectionElement::rows() in rows()
170 return HTMLCollection::create(this, TSectionRows); in rows()
DHTMLDocument.idl34 readonly attribute HTMLCollection embeds;
35 readonly attribute HTMLCollection plugins;
36 readonly attribute HTMLCollection scripts;
42 attribute [Custom, Deletable] HTMLCollection all;
DHTMLTableElement.h33 class HTMLCollection; variable
63 PassRefPtr<HTMLCollection> rows();
64 PassRefPtr<HTMLCollection> tBodies();
DHTMLTableRowElement.h51 PassRefPtr<HTMLCollection> cells();
52 void setCells(HTMLCollection *, ExceptionCode&);
DHTMLMapElement.cpp99 PassRefPtr<HTMLCollection> HTMLMapElement::areas() in areas()
101 return HTMLCollection::create(this, MapAreas); in areas()
DHTMLElement.h31 class HTMLCollection; variable
48 PassRefPtr<HTMLCollection> children();
DHTMLTableElement.idl37 readonly attribute HTMLCollection rows;
38 readonly attribute HTMLCollection tBodies;
DHTMLTableRowsCollection.h39 class HTMLTableRowsCollection : public HTMLCollection {
DHTMLOptionsCollection.h36 class HTMLOptionsCollection : public HTMLCollection {
DHTMLNameCollection.h33 class HTMLNameCollection : public HTMLCollection {
DHTMLMapElement.h48 PassRefPtr<HTMLCollection> areas();
DHTMLTableSectionElement.h61 PassRefPtr<HTMLCollection> rows();
DHTMLFormCollection.h36 class HTMLFormCollection : public HTMLCollection {
/external/webkit/WebCore/bindings/v8/custom/
DV8HTMLCollectionCustom.cpp41 static v8::Handle<v8::Value> getNamedItems(HTMLCollection* collection, AtomicString name) in getNamedItems()
56 static v8::Handle<v8::Value> getItem(HTMLCollection* collection, v8::Handle<v8::Value> argument) in getItem()
72 NAMED_PROPERTY_GETTER(HTMLCollection) in NAMED_PROPERTY_GETTER() argument
87HTMLCollection* imp = V8DOMWrapper::convertToNativeObject<HTMLCollection>(V8ClassIndex::HTMLCOLLEC… in NAMED_PROPERTY_GETTER()
94HTMLCollection* imp = V8DOMWrapper::convertToNativeObject<HTMLCollection>(V8ClassIndex::HTMLCOLLEC… in CALLBACK_FUNC_DECL()
101HTMLCollection* imp = V8DOMWrapper::convertToNativeObject<HTMLCollection>(V8ClassIndex::HTMLCOLLEC… in CALLBACK_FUNC_DECL()
116HTMLCollection* imp = V8DOMWrapper::convertToNativeObject<HTMLCollection>(V8ClassIndex::HTMLCOLLEC… in CALLBACK_FUNC_DECL()
/external/webkit/WebCore/bindings/js/
DJSHTMLCollectionCustom.cpp61 HTMLCollection* collection = jsCollection->impl(); in callHTMLCollection()
101 bool JSHTMLCollection::canGetItemsForName(ExecState*, HTMLCollection* collection, const Identifier&… in canGetItemsForName()
128 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, HTMLCollection* collection) in toJS()
143 typedef HTMLCollection HTMLAllCollection; in toJS()
147 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, HTMLCollection, collection); in toJS()
DJSHTMLAllCollection.h34 class HTMLCollection; variable
38 …<JSC::Structure> structure, JSDOMGlobalObject* globalObject, PassRefPtr<HTMLCollection> collection) in JSHTMLAllCollection()
/external/webkit/WebCore/dom/
DDocument.h79 class HTMLCollection; variable
272 PassRefPtr<HTMLCollection> images();
273 PassRefPtr<HTMLCollection> embeds();
274 PassRefPtr<HTMLCollection> plugins(); // an alias for embeds() required for the JS DOM bindings.
275 PassRefPtr<HTMLCollection> applets();
276 PassRefPtr<HTMLCollection> links();
277 PassRefPtr<HTMLCollection> forms();
278 PassRefPtr<HTMLCollection> anchors();
279 PassRefPtr<HTMLCollection> all();
280 PassRefPtr<HTMLCollection> objects();
[all …]
DHTMLAllCollection.idl34 // An undetectable HTMLCollection behaves like an HTMLCollection
37 interface HTMLAllCollection : HTMLCollection {
DDocument.idl174 readonly attribute HTMLCollection images;
175 readonly attribute HTMLCollection applets;
176 readonly attribute HTMLCollection links;
177 readonly attribute HTMLCollection forms;
178 readonly attribute HTMLCollection anchors;
DDocument.cpp3966 PassRefPtr<HTMLCollection> Document::images() in images()
3968 return HTMLCollection::create(this, DocImages); in images()
3971 PassRefPtr<HTMLCollection> Document::applets() in applets()
3973 return HTMLCollection::create(this, DocApplets); in applets()
3976 PassRefPtr<HTMLCollection> Document::embeds() in embeds()
3978 return HTMLCollection::create(this, DocEmbeds); in embeds()
3981 PassRefPtr<HTMLCollection> Document::plugins() in plugins()
3984 return HTMLCollection::create(this, DocEmbeds); in plugins()
3987 PassRefPtr<HTMLCollection> Document::objects() in objects()
3989 return HTMLCollection::create(this, DocObjects); in objects()
[all …]
/external/webkit/WebCore/bindings/v8/
DDOMObjectsInclude.h239 class HTMLAllCollection : public HTMLCollection {
/external/webkit/WebCore/wml/
DWMLTableElement.h29 class HTMLCollection; variable

1234