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 169 OwnPtr<DocumentOrderedMap> m_elementsById;
181 return m_elementsById && m_elementsById->contains(id);
186 return m_elementsById && m_elementsById->containsMultiple(id.impl());
TreeScope.cpp 120 m_elementsById.clear();
149 if (!m_elementsById)
151 return m_elementsById->getElementById(elementId.impl(), this);
156 if (!m_elementsById)
157 m_elementsById = adoptPtr(new DocumentOrderedMap);
158 m_elementsById->add(elementId.impl(), element);
164 if (!m_elementsById)
166 m_elementsById->remove(elementId.impl(), element);

Completed in 1768 milliseconds