TagCollection    1059 Source/core/dom/ContainerNode.cpp     return ensureRareData().ensureNodeLists().addCache<TagCollection>(*this, TagCollectionType, localName);
TagCollection      83 Source/core/dom/Node.h class TagCollection;
TagCollection      97 Source/core/dom/NodeRareData.h     typedef HashMap<QualifiedName, TagCollection*> TagCollectionCacheNS;
TagCollection     129 Source/core/dom/NodeRareData.h     PassRefPtr<TagCollection> addCache(ContainerNode& node, const AtomicString& namespaceURI, const AtomicString& localName)
TagCollection     136 Source/core/dom/NodeRareData.h         RefPtr<TagCollection> list = TagCollection::create(node, namespaceURI, localName);
TagCollection      32 Source/core/dom/TagCollection.cpp TagCollection::TagCollection(ContainerNode& rootNode, CollectionType type, const AtomicString& namespaceURI, const AtomicString& localName)
TagCollection      40 Source/core/dom/TagCollection.cpp TagCollection::~TagCollection()
TagCollection      48 Source/core/dom/TagCollection.cpp bool TagCollection::elementMatches(const Element& testNode) const
TagCollection      58 Source/core/dom/TagCollection.cpp     : TagCollection(rootNode, HTMLTagCollectionType, starAtom, localName)
TagCollection      34 Source/core/dom/TagCollection.h class TagCollection : public HTMLCollection {
TagCollection      36 Source/core/dom/TagCollection.h     static PassRefPtr<TagCollection> create(ContainerNode& rootNode, const AtomicString& namespaceURI, const AtomicString& localName)
TagCollection      39 Source/core/dom/TagCollection.h         return adoptRef(new TagCollection(rootNode, TagCollectionType, namespaceURI, localName));
TagCollection      42 Source/core/dom/TagCollection.h     static PassRefPtr<TagCollection> create(ContainerNode& rootNode, CollectionType type, const AtomicString& localName)
TagCollection      45 Source/core/dom/TagCollection.h         return adoptRef(new TagCollection(rootNode, TagCollectionType, starAtom, localName));
TagCollection      48 Source/core/dom/TagCollection.h     virtual ~TagCollection();
TagCollection      53 Source/core/dom/TagCollection.h     TagCollection(ContainerNode& rootNode, CollectionType, const AtomicString& namespaceURI, const AtomicString& localName);
TagCollection      59 Source/core/dom/TagCollection.h class HTMLTagCollection FINAL : public TagCollection {
TagCollection     206 Source/core/html/HTMLCollection.cpp         return static_cast<const TagCollection&>(htmlCollection).elementMatches(element);