Searched defs:HTMLCollection (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
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

Completed in 67 milliseconds