/external/webkit/WebCore/html/ |
D | HTMLCollection.cpp | 38 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 …]
|
D | HTMLCollection.h | 43 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);
|
D | HTMLTableRowElement.cpp | 135 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
|
D | HTMLTableSectionElement.cpp | 82 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()
|
D | HTMLDocument.idl | 34 readonly attribute HTMLCollection embeds; 35 readonly attribute HTMLCollection plugins; 36 readonly attribute HTMLCollection scripts; 42 attribute [Custom, Deletable] HTMLCollection all;
|
D | HTMLTableElement.h | 33 class HTMLCollection; variable 63 PassRefPtr<HTMLCollection> rows(); 64 PassRefPtr<HTMLCollection> tBodies();
|
D | HTMLTableRowElement.h | 51 PassRefPtr<HTMLCollection> cells(); 52 void setCells(HTMLCollection *, ExceptionCode&);
|
D | HTMLMapElement.cpp | 99 PassRefPtr<HTMLCollection> HTMLMapElement::areas() in areas() 101 return HTMLCollection::create(this, MapAreas); in areas()
|
D | HTMLElement.h | 31 class HTMLCollection; variable 48 PassRefPtr<HTMLCollection> children();
|
D | HTMLTableElement.idl | 37 readonly attribute HTMLCollection rows; 38 readonly attribute HTMLCollection tBodies;
|
D | HTMLTableRowsCollection.h | 39 class HTMLTableRowsCollection : public HTMLCollection {
|
D | HTMLOptionsCollection.h | 36 class HTMLOptionsCollection : public HTMLCollection {
|
D | HTMLNameCollection.h | 33 class HTMLNameCollection : public HTMLCollection {
|
D | HTMLMapElement.h | 48 PassRefPtr<HTMLCollection> areas();
|
D | HTMLTableSectionElement.h | 61 PassRefPtr<HTMLCollection> rows();
|
D | HTMLFormCollection.h | 36 class HTMLFormCollection : public HTMLCollection {
|
/external/webkit/WebCore/bindings/v8/custom/ |
D | V8HTMLCollectionCustom.cpp | 41 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 87 …HTMLCollection* imp = V8DOMWrapper::convertToNativeObject<HTMLCollection>(V8ClassIndex::HTMLCOLLEC… in NAMED_PROPERTY_GETTER() 94 …HTMLCollection* imp = V8DOMWrapper::convertToNativeObject<HTMLCollection>(V8ClassIndex::HTMLCOLLEC… in CALLBACK_FUNC_DECL() 101 …HTMLCollection* imp = V8DOMWrapper::convertToNativeObject<HTMLCollection>(V8ClassIndex::HTMLCOLLEC… in CALLBACK_FUNC_DECL() 116 …HTMLCollection* imp = V8DOMWrapper::convertToNativeObject<HTMLCollection>(V8ClassIndex::HTMLCOLLEC… in CALLBACK_FUNC_DECL()
|
/external/webkit/WebCore/bindings/js/ |
D | JSHTMLCollectionCustom.cpp | 61 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()
|
D | JSHTMLAllCollection.h | 34 class HTMLCollection; variable 38 …<JSC::Structure> structure, JSDOMGlobalObject* globalObject, PassRefPtr<HTMLCollection> collection) in JSHTMLAllCollection()
|
/external/webkit/WebCore/dom/ |
D | Document.h | 79 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 …]
|
D | HTMLAllCollection.idl | 34 // An undetectable HTMLCollection behaves like an HTMLCollection 37 interface HTMLAllCollection : HTMLCollection {
|
D | Document.idl | 174 readonly attribute HTMLCollection images; 175 readonly attribute HTMLCollection applets; 176 readonly attribute HTMLCollection links; 177 readonly attribute HTMLCollection forms; 178 readonly attribute HTMLCollection anchors;
|
D | Document.cpp | 3966 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/ |
D | DOMObjectsInclude.h | 239 class HTMLAllCollection : public HTMLCollection {
|
/external/webkit/WebCore/wml/ |
D | WMLTableElement.h | 29 class HTMLCollection; variable
|