Searched refs:HTMLCollection (Results 1 - 25 of 130) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDataListElement.idl32 readonly attribute HTMLCollection options;
H A DHTMLMapElement.idl22 readonly attribute HTMLCollection areas;
H A DHTMLNameCollection.h26 #include "core/html/HTMLCollection.h"
31 class HTMLNameCollection : public HTMLCollection {
H A DHTMLFormControlsCollection.idl25 ] interface HTMLFormControlsCollection : HTMLCollection {
H A DHTMLDataListOptionsCollection.h8 #include "core/html/HTMLCollection.h"
13 class HTMLDataListOptionsCollection : public HTMLCollection {
21 HTMLOptionElement* item(unsigned offset) const { return toHTMLOptionElement(HTMLCollection::item(offset)); }
26 : HTMLCollection(ownerNode, DataListOptions, DoesNotOverrideItemAfter)
H A DHTMLCollection.idl26 ] interface HTMLCollection {
H A DHTMLTableRowsCollection.h32 #include "core/html/HTMLCollection.h"
40 class HTMLTableRowsCollection FINAL : public HTMLCollection {
44 HTMLTableRowElement* item(unsigned offset) const { return toHTMLTableRowElement(HTMLCollection::item(offset)); }
H A DHTMLNameCollection.cpp31 : HTMLCollection(document, type, DoesNotOverrideItemAfter)
H A DHTMLCollection.cpp25 #include "core/html/HTMLCollection.h"
166 HTMLCollection::HTMLCollection(ContainerNode& ownerNode, CollectionType type, ItemAfterOverrideType itemAfterOverrideType) function in class:blink::HTMLCollection
173 PassRefPtrWillBeRawPtr<HTMLCollection> HTMLCollection::create(ContainerNode& base, CollectionType type)
175 return adoptRefWillBeNoop(new HTMLCollection(base, type, DoesNotOverrideItemAfter));
178 HTMLCollection::~HTMLCollection()
183 // Named HTMLCollection types remove cache by themselves.
189 void HTMLCollection
[all...]
H A DHTMLCollection.h34 class HTMLCollection : public RefCountedWillBeGarbageCollectedFinalized<HTMLCollection>, public ScriptWrappable, public LiveNodeListBase { class in namespace:blink
36 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLCollection);
43 static PassRefPtrWillBeRawPtr<HTMLCollection> create(ContainerNode& base, CollectionType);
44 virtual ~HTMLCollection();
71 HTMLCollection(ContainerNode& base, CollectionType, ItemAfterOverrideType);
152 mutable CollectionItemsCache<HTMLCollection, Element> m_collectionItemsCache;
155 DEFINE_TYPE_CASTS(HTMLCollection, LiveNodeListBase, collection, isHTMLCollectionType(collection->type()), isHTMLCollectionType(collection.type()));
157 inline void HTMLCollection::invalidateCacheForAttribute(const QualifiedName* attrName) const
H A DHTMLFieldSetElement.idl27 readonly attribute HTMLCollection elements;
H A DHTMLOptionsCollection.h27 #include "core/html/HTMLCollection.h"
34 class HTMLOptionsCollection FINAL : public HTMLCollection {
39 HTMLOptionElement* item(unsigned offset) const { return toHTMLOptionElement(HTMLCollection::item(offset)); }
H A DHTMLTableSectionElement.idl26 readonly attribute HTMLCollection rows;
H A DHTMLTableRowElement.h47 PassRefPtrWillBeRawPtr<HTMLCollection> cells();
H A DHTMLTableSectionElement.cpp33 #include "core/html/HTMLCollection.h"
59 RefPtrWillBeRawPtr<HTMLCollection> children = rows();
76 RefPtrWillBeRawPtr<HTMLCollection> children = rows();
96 PassRefPtrWillBeRawPtr<HTMLCollection> HTMLTableSectionElement::rows()
98 return ensureCachedCollection<HTMLCollection>(TSectionRows);
H A DHTMLMapElement.cpp31 #include "core/html/HTMLCollection.h"
72 RefPtrWillBeRawPtr<HTMLCollection> images = document().images();
114 PassRefPtrWillBeRawPtr<HTMLCollection> HTMLMapElement::areas()
116 return ensureCachedCollection<HTMLCollection>(MapAreas);
H A DHTMLAllCollection.h29 #include "core/html/HTMLCollection.h"
33 class HTMLAllCollection FINAL : public HTMLCollection {
H A DHTMLMapElement.h44 PassRefPtrWillBeRawPtr<HTMLCollection> areas();
H A DHTMLTableElement.idl26 readonly attribute HTMLCollection rows;
27 readonly attribute HTMLCollection tBodies;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebElementCollection.h45 class HTMLCollection;
71 WebElementCollection(const PassRefPtrWillBeRawPtr<HTMLCollection>&);
72 WebElementCollection& operator=(const PassRefPtrWillBeRawPtr<HTMLCollection>&);
76 WebPrivatePtr<HTMLCollection> m_private;
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DShadowRoot.idl37 HTMLCollection getElementsByClassName([Default=Undefined] optional DOMString className);
38 HTMLCollection getElementsByTagName([Default=Undefined] optional DOMString tagName);
39 HTMLCollection getElementsByTagNameNS([Default=Undefined] optional DOMString? namespaceURI,
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebElementCollection.cpp36 #include "core/html/HTMLCollection.h"
52 WebElementCollection::WebElementCollection(const PassRefPtrWillBeRawPtr<HTMLCollection>& col)
57 WebElementCollection& WebElementCollection::operator=(const PassRefPtrWillBeRawPtr<HTMLCollection>& col)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DClassCollection.cpp39 : HTMLCollection(rootNode, ClassCollectionType, DoesNotOverrideItemAfter)
H A DParentNode.idl35 [PerWorldBindings] readonly attribute HTMLCollection children;
H A DTagCollection.cpp33 : HTMLCollection(rootNode, type, DoesNotOverrideItemAfter)

Completed in 6028 milliseconds

123456