Home
last modified time | relevance | path

Searched refs:markAllMatchesForText (Results 1 – 24 of 24) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/WebPage/
DFindController.cpp71 …unsigned matchCount = m_webPage->corePage()->markAllMatchesForText(string, core(options), false, m… in countStringMatches()
116 …unsigned matchCount = m_webPage->corePage()->markAllMatchesForText(string, core(options), false, m… in findString()
/external/webkit/Source/WebCore/page/
DPage.h212 unsigned markAllMatchesForText(const String&, FindOptions, bool shouldHighlight, unsigned);
214 …unsigned markAllMatchesForText(const String&, TextCaseSensitivity, bool shouldHighlight, unsigned);
DPage.cpp531 unsigned int Page::markAllMatchesForText(const String& target, TextCaseSensitivity caseSensitivity,… in markAllMatchesForText() function in WebCore::Page
533 …return markAllMatchesForText(target, caseSensitivity == TextCaseInsensitive ? CaseInsensitive : 0,… in markAllMatchesForText()
536 unsigned int Page::markAllMatchesForText(const String& target, FindOptions options, bool shouldHigh… in markAllMatchesForText() function in WebCore::Page
/external/webkit/Source/WebKit/mac/WebView/
DWebViewPrivate.h563 - (WebNSUInteger)markAllMatchesForText:(NSString *)string caseSensitive:(BOOL)caseFlag highlight:(B…
DWebView.mm2798 - (NSUInteger)markAllMatchesForText:(NSString *)string caseSensitive:(BOOL)caseFlag highlight:(BOOL…
/external/webkit/Source/WebKit/win/Interfaces/
DIWebViewPrivate.idl96 …HRESULT markAllMatchesForText([in] BSTR search, [in] BOOL caseSensitive, [in] BOOL highlight, [in]…
/external/webkit/Source/WebKit/mac/
DWebKit.order1609 -[WebView(WebPendingPublic) markAllMatchesForText:caseSensitive:highlight:limit:]
1611 -[WebHTMLView(WebDocumentInternalProtocols) markAllMatchesForText:caseSensitive:limit:]
2575 -[WebPDFView markAllMatchesForText:caseSensitive:limit:]
DChangeLog3797 * WebView/WebDocumentInternal.h: Removed -markAllMatchesForText:caseSensitive:limit: and
3810 (-[WebView markAllMatchesForText:caseSensitive:highlight:limit:]): Now calls through to
5853 (-[WebView markAllMatchesForText:caseSensitive:highlight:limit:]):
6017 Rename markAllMatchesForText: to countMatchesForText: and add a markMatches:
6018 parameter. For backwards compatibility markAllMatchesForText: calls
6023 (-[WebHTMLView markAllMatchesForText:caseSensitive:limit:]):
6026 (-[WebPDFView markAllMatchesForText:caseSensitive:limit:]):
6029 (-[WebView markAllMatchesForText:caseSensitive:highlight:limit:]):
DChangeLog-2007-10-142659 (-[WebHTMLView markAllMatchesForText:caseSensitive:limit:]): Fix argument types.
2776 (-[WebPDFView markAllMatchesForText:caseSensitive:limit:]):
2863 (-[WebHTMLView markAllMatchesForText:caseSensitive:limit:]):
2877 (-[WebView markAllMatchesForText:caseSensitive:highlight:limit:]):
2894 (-[WebView markAllMatchesForText:caseSensitive:highlight:limit:]):
3435 (-[WebView markAllMatchesForText:caseSensitive:highlight:limit:]):
15695 (-[WebHTMLView markAllMatchesForText:caseSensitive:limit:]):
15700 (-[WebView markAllMatchesForText:caseSensitive:highlight:limit:]):
20285 (-[WebHTMLView markAllMatchesForText:caseSensitive:]):
20299 (-[WebView markAllMatchesForText:caseSensitive:highlight:]):
DChangeLog-2010-01-2919275 (-[WebHTMLView markAllMatchesForText:caseSensitive:limit:]): Ditto.
19541 (-[WebHTMLView markAllMatchesForText:caseSensitive:limit:]): Ditto.
/external/webkit/Source/WebKit/win/
DWebView.h643 virtual HRESULT STDMETHODCALLTYPE markAllMatchesForText(
DWebView.cpp3354 HRESULT STDMETHODCALLTYPE WebView::markAllMatchesForText( in markAllMatchesForText() function in WebView
3366 …*matches = m_page->markAllMatchesForText(String(str, SysStringLen(str)), caseSensitive ? TextCaseS… in markAllMatchesForText()
DChangeLog-2009-06-166510 (WebView::markAllMatchesForText): Call through to Page.
20109 (WebView::markAllMatchesForText):
/external/webkit/Source/WebKit/qt/Api/
Dqwebpage.cpp3583 return d->page->markAllMatchesForText(subString, caseSensitivity, true, 0); in findText()
/external/webkit/Source/WebKit/efl/ewk/
Dewk_view.cpp1461 return priv->page->markAllMatchesForText(String::fromUTF8(string), sensitive, highlight, limit); in ewk_view_text_matches_mark()
/external/webkit/Source/WebKit/gtk/webkit/
Dwebkitwebview.cpp4081 …return core(webView)->markAllMatchesForText(String::fromUTF8(string), caseSensitivity, false, limi… in webkit_web_view_mark_text_matches()
/external/webkit/Source/WebKit/efl/
DChangeLog2146 countMatchesForText() instead of markAllMatchesForText().
/external/webkit/Source/WebCore/
DChangeLog-2006-12-3127354 (-[WebCoreFrameBridge markAllMatchesForText:caseSensitive:limit:]):
27359 (WebCore::Frame::markAllMatchesForText):
48985 (WebCore::Frame::markAllMatchesForText):
53342 (-[WebCoreFrameBridge markAllMatchesForText:caseSensitive:]):
53353 (WebCore::Frame::markAllMatchesForText):
DChangeLog-2008-08-1050 This patch makes the findString and markAllMatchesForText functions
62 (WebCore::Frame::markAllMatchesForText):
7988 (WebCore::Frame::markAllMatchesForText): ditto.
8387 (WebCore::Frame::markAllMatchesForText): Ditto.
29134 (WebCore::Frame::markAllMatchesForText):
63847 (WebCore::Page::markAllMatchesForText):
63862 (WebCore::Page::markAllMatchesForText):
DChangeLog-2009-06-1639995 (WebCore::Frame::markAllMatchesForText):
52832 (WebCore::Frame::markAllMatchesForText):
85345 (WebCore::Frame::markAllMatchesForText):
95275 disconnected frames to work correctly with markAllMatchesForText()
95314 (WebCore::Frame::markAllMatchesForText): I kept running into an
96965 This patch refines findString and markAllMatchesForText functions'
96984 (WebCore::Frame::markAllMatchesForText):
DChangeLog-2010-12-063997 (WebCore::Page::markAllMatchesForText): Ditto.
3998 * page/Page.h: Added FindOptions-based findString() and markAllMatchesForText().
58727 (WebCore::Page::markAllMatchesForText):
64848 Rename markAllMatchesForText() to countMatchesForText() and add a markMatches parameter.
64855 (WebCore::Page::markAllMatchesForText):
74266 (WebCore::Frame::markAllMatchesForText): Ditto.
DChangeLog-2007-10-1451942 (WebCore::Frame::markAllMatchesForText): Ditto.
52443 (WebCore::Frame::markAllMatchesForText):
53229 (WebCore::Frame::markAllMatchesForText):
DChangeLog-2010-01-2912259 (WebCore::Frame::markAllMatchesForText): Changed to use the end of the previous
81021 (WebCore::Frame::markAllMatchesForText):
/external/webkit/Source/WebKit/chromium/
DChangeLog-2011-02-162232 (formerly Frame::markAllMatchesForText), but was rewritten with