Home
last modified time | relevance | path

Searched refs:m_elementsById (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DTreeScope.h185 OwnPtrWillBeMember<DocumentOrderedMap> m_elementsById; variable
199 return m_elementsById && m_elementsById->contains(id); in hasElementWithId()
204 return m_elementsById && m_elementsById->containsMultiple(id); in containsMultipleElementsWithId()
DTreeScope.cpp129 m_elementsById.clear(); in destroyTreeScopeData()
166 if (!m_elementsById) in getElementById()
168 return m_elementsById->getElementById(elementId, this); in getElementById()
176 if (!m_elementsById) in getAllElementsById()
178 return m_elementsById->getAllElementsById(elementId, this); in getAllElementsById()
183 if (!m_elementsById) in addElementById()
184 m_elementsById = DocumentOrderedMap::create(); in addElementById()
185 m_elementsById->add(elementId, element); in addElementById()
191 if (!m_elementsById) in removeElementById()
193 m_elementsById->remove(elementId, element); in removeElementById()
[all …]