Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/web/
DWebFrameImpl.cpp1686 m_findMatchesCache.append(FindMatch(resultRange.get(), m_lastMatchCount + matchCount)); in scopeStringMatches()
1829 if (!m_findMatchesCache.isEmpty()) in clearFindMatchesCache()
1832 m_findMatchesCache.clear(); in clearFindMatchesCache()
1852 …for (Vector<FindMatch>::iterator it = m_findMatchesCache.begin(); it != m_findMatchesCache.end(); … in updateFindMatchRects()
1865 filteredMatches.reserveCapacity(m_findMatchesCache.size() - deadMatches); in updateFindMatchRects()
1867 …for (Vector<FindMatch>::const_iterator it = m_findMatchesCache.begin(); it != m_findMatchesCache.e… in updateFindMatchRects()
1871 m_findMatchesCache.swap(filteredMatches); in updateFindMatchRects()
1906 frameRects.reserveCapacity(frameRects.size() + m_findMatchesCache.size()); in appendFindMatchRects()
1907 …for (Vector<FindMatch>::const_iterator it = m_findMatchesCache.begin(); it != m_findMatchesCache.e… in appendFindMatchRects()
1943 for (size_t i = 0; i < m_findMatchesCache.size(); ++i) { in nearestFindMatch()
[all …]
DWebFrameImpl.h504 Vector<FindMatch> m_findMatchesCache; variable