/external/webkit/Source/WebCore/html/ |
D | HTMLCollection.cpp | 39 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 …]
|
D | HTMLCollection.h | 40 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);
|
D | HTMLTableRowElement.cpp | 123 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
|
D | HTMLTableSectionElement.cpp | 66 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()
|
D | HTMLTableElement.h | 33 class HTMLCollection; variable 60 PassRefPtr<HTMLCollection> rows(); 61 PassRefPtr<HTMLCollection> tBodies();
|
D | HTMLDataListElement.cpp | 50 PassRefPtr<HTMLCollection> HTMLDataListElement::options() in options() 52 return HTMLCollection::create(this, DataListOptions); in options()
|
D | HTMLTableRowElement.h | 47 PassRefPtr<HTMLCollection> cells(); 48 void setCells(HTMLCollection *, ExceptionCode&);
|
D | HTMLMapElement.cpp | 85 RefPtr<HTMLCollection> coll = document()->images(); in imageElement() 129 PassRefPtr<HTMLCollection> HTMLMapElement::areas() in areas() 131 return HTMLCollection::create(this, MapAreas); in areas()
|
D | HTMLDocument.idl | 31 readonly attribute HTMLCollection embeds; 32 readonly attribute HTMLCollection plugins; 33 readonly attribute HTMLCollection scripts;
|
D | HTMLElement.h | 31 class HTMLCollection; variable 38 PassRefPtr<HTMLCollection> children();
|
D | HTMLTableElement.idl | 28 readonly attribute HTMLCollection rows; 29 readonly attribute HTMLCollection tBodies;
|
D | HTMLAllCollection.h | 33 class HTMLAllCollection : public HTMLCollection {
|
D | HTMLAllCollection.cpp | 39 : HTMLCollection(base, DocAll) in HTMLAllCollection()
|
D | HTMLDataListElement.h | 46 PassRefPtr<HTMLCollection> options();
|
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 | HTMLTableSectionElement.h | 54 PassRefPtr<HTMLCollection> rows();
|
D | HTMLMapElement.h | 45 PassRefPtr<HTMLCollection> areas();
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebNodeCollection.cpp | 51 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/ |
D | V8HTMLCollectionCustom.cpp | 44 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/ |
D | WebNodeCollection.h | 36 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/ |
D | JSHTMLCollectionCustom.cpp | 65 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/ |
D | Document.h | 84 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 …]
|
D | Document.idl | 170 readonly attribute HTMLCollection images; 171 readonly attribute HTMLCollection applets; 172 readonly attribute HTMLCollection links; 173 readonly attribute HTMLCollection forms; 174 readonly attribute HTMLCollection anchors;
|