Home
last modified time | relevance | path

Searched refs:lastItemOffset (Results 1 – 4 of 4) sorted by relevance

/external/webkit/WebCore/dom/
DDynamicNodeList.cpp75 m_caches->lastItemOffset = offset; in itemForwardsFromCurrent()
93 m_caches->lastItemOffset = offset; in itemBackwardsFromCurrent()
109 if (offset == m_caches->lastItemOffset) in item()
111 else if (offset > m_caches->lastItemOffset || m_caches->lastItemOffset - offset < offset) { in item()
113 remainingOffset -= m_caches->lastItemOffset; in item()
DChildNodeList.cpp56 if (index == m_caches->lastItemOffset) in item()
59 int diff = index - m_caches->lastItemOffset; in item()
63 pos = m_caches->lastItemOffset; in item()
93 m_caches->lastItemOffset = pos; in item()
DDynamicNodeList.h46 unsigned lastItemOffset; member
/external/webkit/WebCore/
DChangeLog-2005-12-192819 Cache the lastItem and lastItemOffset for fast retrieval of the
2820 same index or indeicies greater than lastItemOffset. Also cache
2826 (ChildNodeListImpl::item): Use lastItemOffset and lastItem if we can.