HomeSort by relevance Sort by last modified time
    Searched refs:LiveNodeListBase (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
LiveNodeList.cpp 32 Node* LiveNodeListBase::rootNode() const
39 ContainerNode* LiveNodeListBase::rootContainerNode() const
47 void LiveNodeListBase::invalidateCache() const
63 void LiveNodeListBase::invalidateIdNameCacheMaps() const
LiveNodeList.h 44 class LiveNodeListBase : public NodeList {
51 LiveNodeListBase(Node* ownerNode, NodeListRootType rootType, NodeListInvalidationType invalidationType,
74 virtual ~LiveNodeListBase()
164 ALWAYS_INLINE bool LiveNodeListBase::shouldInvalidateTypeOnAttributeChange(NodeListInvalidationType type, const QualifiedName& attrName)
189 class LiveNodeList : public LiveNodeListBase {
192 : LiveNodeListBase(ownerNode.get(), rootType, invalidationType, collectionType == ChildNodeListType,
NodeRareData.h 79 typedef HashMap<std::pair<unsigned char, AtomicString>, LiveNodeListBase*, NodeListCacheMapEntryHash<AtomicString> > NodeListAtomicNameCacheMap;
80 typedef HashMap<std::pair<unsigned char, String>, LiveNodeListBase*, NodeListCacheMapEntryHash<String> > NodeListNameCacheMap;
138 void removeCacheWithAtomicName(LiveNodeListBase* list, CollectionType collectionType, const AtomicString& name = starAtom)
146 void removeCacheWithName(LiveNodeListBase* list, CollectionType collectionType, const String& name)
186 LiveNodeListBase* list = it->value;
193 LiveNodeListBase* list = it->value;
200 LiveNodeListBase* list = it->value;
Document.h 120 class LiveNodeListBase;
666 void registerNodeList(LiveNodeListBase*);
667 void unregisterNodeList(LiveNodeListBase*);
    [all...]
Node.cpp 871 if (nodeListCounts[type] && LiveNodeListBase::shouldInvalidateTypeOnAttributeChange(static_cast<NodeListInvalidationType>(type), attrName))
897 HashSet<LiveNodeListBase*>::iterator end = m_listsInvalidatedAtDocument.end();
898 for (HashSet<LiveNodeListBase*>::iterator it = m_listsInvalidatedAtDocument.begin(); it != end; ++it)
    [all...]
Document.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCollection.h 34 class HTMLCollection : public LiveNodeListBase {
91 friend class LiveNodeListBase;
HTMLCollection.cpp 160 : LiveNodeListBase(ownerNode, rootTypeFromCollectionType(type), invalidationTypeExcludingIdAndNameAttributes(type),
273 ALWAYS_INLINE Node* LiveNodeListBase::iterateForPreviousNode(Node* current) const
290 ALWAYS_INLINE Node* LiveNodeListBase::itemBefore(Node* previous) const
333 inline Node* LiveNodeListBase::traverseChildNodeListForwardToOffset(unsigned offset, Node* currentNode, unsigned& currentOffset) const
345 inline Element* LiveNodeListBase::traverseLiveNodeListFirstElement(ContainerNode* root) const
357 inline Element* LiveNodeListBase::traverseLiveNodeListForwardToOffset(unsigned offset, Element* currentElement, unsigned& currentOffset, ContainerNode* root) const
368 bool ALWAYS_INLINE LiveNodeListBase::isLastItemCloserThanLastOrCachedItem(unsigned offset) const
378 bool ALWAYS_INLINE LiveNodeListBase::isFirstItemCloserThanCachedItem(unsigned offset) const
388 ALWAYS_INLINE void LiveNodeListBase::setItemCache(Node* item, unsigned offset, unsigned elementsArrayOffset) const
398 unsigned LiveNodeListBase::length() cons
    [all...]

Completed in 127 milliseconds