Home
last modified time | relevance | path

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

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/WebProcess/WebPage/
H A 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()
H A DFindController.h51 void findString(const String&, FindOptions, unsigned maxMatchCount);
53 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
H A DWebPage.messages.in118 FindString(WTF::String string, uint32_t findOptions, unsigned maxMatchCount)
120 CountStringMatches(WTF::String string, uint32_t findOptions, unsigned maxMatchCount)
H A DWebPage.h525 void findString(const String&, uint32_t findOptions, uint32_t maxMatchCount);
527 void countStringMatches(const String&, uint32_t findOptions, uint32_t maxMatchCount);
H A DWebPage.cpp1746 void WebPage::findString(const String& string, uint32_t options, uint32_t maxMatchCount) in findString() argument
1748 m_findController.findString(string, static_cast<FindOptions>(options), maxMatchCount); in findString()
1756 void WebPage::countStringMatches(const String& string, uint32_t options, uint32_t maxMatchCount) in countStringMatches() argument
1758 m_findController.countStringMatches(string, static_cast<FindOptions>(options), maxMatchCount); in countStringMatches()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/UIProcess/API/mac/
H A DPDFViewController.h70 void findString(const String&, FindOptions, unsigned maxMatchCount);
71 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
H A DWKViewInternal.h74 …ation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)co…
75 …ation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)co…
H A DPageClientImpl.mm370 …findStringInCustomRepresentation(const String& string, FindOptions options, unsigned maxMatchCount)
372 …View _findStringInCustomRepresentation:string withFindOptions:options maxMatchCount:maxMatchCount];
375 …ingMatchesInCustomRepresentation(const String& string, FindOptions options, unsigned maxMatchCount)
377 …untStringMatchesInCustomRepresentation:string withFindOptions:options maxMatchCount:maxMatchCount];
H A DPageClientImpl.h106 … virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
107 … void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
H A 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;
H A DWKView.mm2317 …ation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)co…
2325 …ation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)co…
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/UIProcess/API/qt/
H A 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
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/UIProcess/
H A DPageClient.h167 …tual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) = 0;
168 …d countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) = 0;
H A DWebPageProxy.cpp1183 void WebPageProxy::findString(const String& string, FindOptions options, unsigned maxMatchCount) in findString() argument
1186 m_pageClient->findStringInCustomRepresentation(string, options, maxMatchCount); in findString()
1188 process()->send(Messages::WebPage::FindString(string, options, maxMatchCount), m_pageID); in findString()
1196 …WebPageProxy::countStringMatches(const String& string, FindOptions options, unsigned maxMatchCount) in countStringMatches() argument
1199 m_pageClient->countStringMatchesInCustomRepresentation(string, options, maxMatchCount); in countStringMatches()
1206 … process()->send(Messages::WebPage::CountStringMatches(string, options, maxMatchCount), m_pageID); in countStringMatches()
H A DWebPageProxy.h378 void findString(const String&, FindOptions, unsigned maxMatchCount);
380 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPage.cpp342 …ageFindString(WKPageRef pageRef, WKStringRef string, WKFindOptions options, unsigned maxMatchCount) in WKPageFindString() argument
344 toImpl(pageRef)->findString(toImpl(string)->string(), toFindOptions(options), maxMatchCount); in WKPageFindString()
352 …StringMatches(WKPageRef pageRef, WKStringRef string, WKFindOptions options, unsigned maxMatchCount) in WKPageCountStringMatches() argument
354 …Impl(pageRef)->countStringMatches(toImpl(string)->string(), toFindOptions(options), maxMatchCount); in WKPageCountStringMatches()
H A DWKPage.h351 …eFindString(WKPageRef page, WKStringRef string, WKFindOptions findOptions, unsigned maxMatchCount);
353 …ringMatches(WKPageRef page, WKStringRef string, WKFindOptions findOptions, unsigned maxMatchCount);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/UIProcess/win/
H A DWebView.h210 … virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
211 … void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/apps/razers3/
H A Drazers_parallel.h1046 uint64_t maxMatchCount = 0; in _mapSingleReadsParallel() local
1050 maxMatchCount = _max(maxMatchCount, length(threadLocalStorages[i].matches)); in _mapSingleReadsParallel()
1062 int64_t maxMemoryRequired = sizeof(TMatch) * maxMatchCount; in _mapSingleReadsParallel()
H A Drazers_matepairs_parallel.h1502 uint64_t maxMatchCount = 0; in _mapMatePairReadsParallel() local
1506 maxMatchCount = _max(maxMatchCount, length(threadLocalStorages[i].matches)); in _mapMatePairReadsParallel()
1518 int64_t maxMemoryRequired = sizeof(TMatch) * maxMatchCount; in _mapMatePairReadsParallel()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/
H A DChangeLog5054 (-[WKView _findStringInCustomRepresentation:withFindOptions:maxMatchCount:]): Added.
5055 (-[WKView _countStringMatchesInCustomRepresentation:withFindOptions:maxMatchCount:]): Added.