Home
last modified time | relevance | path

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

/external/webkit/Source/WebKit/chromium/src/
DWebFrameImpl.cpp1535 m_activeMatchIndex = 0; in find()
1537 m_activeMatchIndex = m_lastMatchCount - 1; in find()
1541 options.forward ? ++m_activeMatchIndex : --m_activeMatchIndex; in find()
1542 if (m_activeMatchIndex + 1 > m_lastMatchCount) in find()
1543 m_activeMatchIndex = 0; in find()
1544 if (m_activeMatchIndex == -1) in find()
1545 m_activeMatchIndex = m_lastMatchCount - 1; in find()
1549 reportFindInPageSelection(*selectionRect, m_activeMatchIndex + 1, identifier); in find()
1681 m_activeMatchIndex = matchCount - 1; in scopeStringMatches()
1688 m_activeMatchIndex + 1, in scopeStringMatches()
[all …]
DWebFrameImpl.h354 int m_activeMatchIndex; variable
/external/webkit/Source/WebKit/android/jni/
DWebViewCore.cpp443 , m_activeMatchIndex(0) in WebViewCore()
4249 m_activeMatchIndex = 0; in resetFindOnPage()
4271 m_activeMatchIndex = m_matchCount - 1; // prime first findNext in findTextOnPage()
4308 m_activeMatchIndex = 0; in findNextOnPage()
4313 ++m_activeMatchIndex; in findNextOnPage()
4314 if (m_activeMatchIndex == m_matchCount) in findNextOnPage()
4315 m_activeMatchIndex = 0; in findNextOnPage()
4317 if (m_activeMatchIndex == 0) in findNextOnPage()
4318 m_activeMatchIndex = m_matchCount; in findNextOnPage()
4319 --m_activeMatchIndex; in findNextOnPage()
[all …]
DWebViewCore.h792 int m_activeMatchIndex; variable