Home
last modified time | relevance | path

Searched refs:maxMatchCount (Results 1 – 19 of 19) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/WebPage/
DFindController.cpp66 …ndController::countStringMatches(const String& string, FindOptions options, unsigned maxMatchCount) in countStringMatches() argument
68 if (maxMatchCount == numeric_limits<unsigned>::max()) in countStringMatches()
69 --maxMatchCount; in countStringMatches()
71 …nt = m_webPage->corePage()->markAllMatchesForText(string, core(options), false, maxMatchCount + 1); in countStringMatches()
75 if (matchCount > maxMatchCount) in countStringMatches()
91 void FindController::findString(const String& string, FindOptions options, unsigned maxMatchCount) in findString() argument
113 if (maxMatchCount == numeric_limits<unsigned>::max()) in findString()
114 --maxMatchCount; in findString()
116 …nt = m_webPage->corePage()->markAllMatchesForText(string, core(options), false, maxMatchCount + 1); in findString()
119 if (matchCount > maxMatchCount) { in findString()
DFindController.h51 void findString(const String&, FindOptions, unsigned maxMatchCount);
53 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
DWebPage.messages.in116 FindString(WTF::String string, uint32_t findOptions, unsigned maxMatchCount)
118 CountStringMatches(WTF::String string, uint32_t findOptions, unsigned maxMatchCount)
DWebPage.h516 void findString(const String&, uint32_t findOptions, uint32_t maxMatchCount);
518 void countStringMatches(const String&, uint32_t findOptions, uint32_t maxMatchCount);
DWebPage.cpp1666 void WebPage::findString(const String& string, uint32_t options, uint32_t maxMatchCount) in findString() argument
1668 m_findController.findString(string, static_cast<FindOptions>(options), maxMatchCount); in findString()
1676 void WebPage::countStringMatches(const String& string, uint32_t options, uint32_t maxMatchCount) in countStringMatches() argument
1678 m_findController.countStringMatches(string, static_cast<FindOptions>(options), maxMatchCount); in countStringMatches()
/external/webkit/Source/WebKit2/UIProcess/API/mac/
DPDFViewController.h70 void findString(const String&, FindOptions, unsigned maxMatchCount);
71 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
DWKViewInternal.h73 …ation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)co…
74 …ation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)co…
DPageClientImpl.mm363 …findStringInCustomRepresentation(const String& string, FindOptions options, unsigned maxMatchCount)
365 …View _findStringInCustomRepresentation:string withFindOptions:options maxMatchCount:maxMatchCount];
368 …ingMatchesInCustomRepresentation(const String& string, FindOptions options, unsigned maxMatchCount)
370 …untStringMatchesInCustomRepresentation:string withFindOptions:options maxMatchCount:maxMatchCount];
DPageClientImpl.h105 … virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
106 … void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
DPDFViewController.mm605 …id PDFViewController::findString(const String& string, FindOptions options, unsigned maxMatchCount)
613 if (matchCount > maxMatchCount)
614 matchCount = maxMatchCount;
626 …ewController::countStringMatches(const String& string, FindOptions options, unsigned maxMatchCount)
631 if (matchCount > maxMatchCount)
632 matchCount = maxMatchCount;
DWKView.mm2271 …ation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)co…
2279 …ation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)co…
/external/webkit/Source/WebKit2/UIProcess/API/qt/
Dqwkpage_p.h97 …rtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) { } in findStringInCustomRepresentation() argument
98 …id countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) { } in countStringMatchesInCustomRepresentation() argument
/external/webkit/Source/WebKit2/UIProcess/
DPageClient.h155 …tual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) = 0;
156 …d countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) = 0;
DWebPageProxy.cpp1153 void WebPageProxy::findString(const String& string, FindOptions options, unsigned maxMatchCount) in findString() argument
1156 m_pageClient->findStringInCustomRepresentation(string, options, maxMatchCount); in findString()
1158 process()->send(Messages::WebPage::FindString(string, options, maxMatchCount), m_pageID); in findString()
1166 …WebPageProxy::countStringMatches(const String& string, FindOptions options, unsigned maxMatchCount) in countStringMatches() argument
1169 m_pageClient->countStringMatchesInCustomRepresentation(string, options, maxMatchCount); in countStringMatches()
1176 … process()->send(Messages::WebPage::CountStringMatches(string, options, maxMatchCount), m_pageID); in countStringMatches()
DWebPageProxy.h360 void findString(const String&, FindOptions, unsigned maxMatchCount);
362 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
/external/webkit/Source/WebKit2/UIProcess/API/C/
DWKPage.cpp336 …ageFindString(WKPageRef pageRef, WKStringRef string, WKFindOptions options, unsigned maxMatchCount) in WKPageFindString() argument
338 toImpl(pageRef)->findString(toImpl(string)->string(), toFindOptions(options), maxMatchCount); in WKPageFindString()
346 …StringMatches(WKPageRef pageRef, WKStringRef string, WKFindOptions options, unsigned maxMatchCount) in WKPageCountStringMatches() argument
348 …Impl(pageRef)->countStringMatches(toImpl(string)->string(), toFindOptions(options), maxMatchCount); in WKPageCountStringMatches()
DWKPage.h346 …eFindString(WKPageRef page, WKStringRef string, WKFindOptions findOptions, unsigned maxMatchCount);
348 …ringMatches(WKPageRef page, WKStringRef string, WKFindOptions findOptions, unsigned maxMatchCount);
/external/webkit/Source/WebKit2/UIProcess/win/
DWebView.h188 … virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
189 … void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
/external/webkit/Source/WebKit2/
DChangeLog2156 (-[WKView _findStringInCustomRepresentation:withFindOptions:maxMatchCount:]): Added.
2157 (-[WKView _countStringMatchesInCustomRepresentation:withFindOptions:maxMatchCount:]): Added.