Home
last modified time | relevance | path

Searched refs:collectionType (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DNodeRareData.h84 …PassRefPtr<T> addCacheWithAtomicName(Node* node, CollectionType collectionType, const AtomicString… in addCacheWithAtomicName() argument
86 …NameCacheMap::AddResult result = m_atomicNameCaches.add(namedNodeListKey(collectionType, name), 0); in addCacheWithAtomicName()
90 RefPtr<T> list = T::create(node, collectionType, name); in addCacheWithAtomicName()
97 PassRefPtr<T> addCacheWithAtomicName(Node* node, CollectionType collectionType) in addCacheWithAtomicName() argument
99 …CacheMap::AddResult result = m_atomicNameCaches.add(namedNodeListKey(collectionType, starAtom), 0); in addCacheWithAtomicName()
103 RefPtr<T> list = T::create(node, collectionType); in addCacheWithAtomicName()
109 T* cacheWithAtomicName(CollectionType collectionType) in cacheWithAtomicName() argument
111 return static_cast<T*>(m_atomicNameCaches.get(namedNodeListKey(collectionType, starAtom))); in cacheWithAtomicName()
115 PassRefPtr<T> addCacheWithName(Node* node, CollectionType collectionType, const String& name) in addCacheWithName() argument
117 …NodeListNameCacheMap::AddResult result = m_nameCaches.add(namedNodeListKey(collectionType, name), … in addCacheWithName()
[all …]
DLiveNodeList.h52 …bool shouldOnlyIncludeDirectChildren, CollectionType collectionType, ItemAfterOverrideType itemAft… in LiveNodeListBase() argument
61 , m_collectionType(collectionType) in LiveNodeListBase()
67 ASSERT(m_collectionType == static_cast<unsigned>(collectionType)); in LiveNodeListBase()
68 ASSERT(!m_overridesItemAfter || !isNodeList(collectionType)); in LiveNodeListBase()
70 if (collectionType != ChildNodeListType) in LiveNodeListBase()
191 …LiveNodeList(PassRefPtr<Node> ownerNode, CollectionType collectionType, NodeListInvalidationType i…
192 …: LiveNodeListBase(ownerNode.get(), rootType, invalidationType, collectionType == ChildNodeListTyp…
193 collectionType, DoesNotOverrideItemAfter)
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLCollection.cpp277 CollectionType collectionType = type(); in iterateForPreviousNode() local
280 if (isNodeList(collectionType)) { in iterateForPreviousNode()