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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScope.h 185 OwnPtrWillBeMember<DocumentOrderedMap> m_elementsById;
199 return m_elementsById && m_elementsById->contains(id);
204 return m_elementsById && m_elementsById->containsMultiple(id);
TreeScope.cpp 129 m_elementsById.clear();
166 if (!m_elementsById)
168 return m_elementsById->getElementById(elementId, this);
176 if (!m_elementsById)
178 return m_elementsById->getAllElementsById(elementId, this);
183 if (!m_elementsById)
184 m_elementsById = DocumentOrderedMap::create();
185 m_elementsById->add(elementId, element);
191 if (!m_elementsById)
193 m_elementsById->remove(elementId, element)
    [all...]

Completed in 56 milliseconds