Searched defs:m_activeMatchIndex (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.h354 int m_activeMatchIndex; member in class:WebKit::WebFrameImpl
H A DWebFrameImpl.cpp1535 m_activeMatchIndex = 0;
1537 m_activeMatchIndex = m_lastMatchCount - 1;
1540 // |m_activeMatchIndex|, wrapping if needed (on single frame pages).
1541 options.forward ? ++m_activeMatchIndex : --m_activeMatchIndex;
1542 if (m_activeMatchIndex + 1 > m_lastMatchCount)
1543 m_activeMatchIndex = 0;
1544 if (m_activeMatchIndex == -1)
1545 m_activeMatchIndex = m_lastMatchCount - 1;
1549 reportFindInPageSelection(*selectionRect, m_activeMatchIndex
1688 m_activeMatchIndex + 1, local
[all...]
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.h784 int m_activeMatchIndex; member in class:android::WebViewCore

Completed in 342 milliseconds