HomeSort by relevance Sort by last modified time
    Searched refs:maxMatchCount (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.h 51 void findString(const String&, FindOptions, unsigned maxMatchCount);
53 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
FindController.cpp 66 void FindController::countStringMatches(const String& string, FindOptions options, unsigned maxMatchCount)
68 if (maxMatchCount == numeric_limits<unsigned>::max())
69 --maxMatchCount;
71 unsigned matchCount = m_webPage->corePage()->markAllMatchesForText(string, core(options), false, maxMatchCount + 1);
75 if (matchCount > maxMatchCount)
91 void FindController::findString(const String& string, FindOptions options, unsigned maxMatchCount)
113 if (maxMatchCount == numeric_limits<unsigned>::max())
114 --maxMatchCount;
116 unsigned matchCount = m_webPage->corePage()->markAllMatchesForText(string, core(options), false, maxMatchCount + 1);
119 if (matchCount > maxMatchCount) {
    [all...]
WebPage.h 516 void findString(const String&, uint32_t findOptions, uint32_t maxMatchCount);
518 void countStringMatches(const String&, uint32_t findOptions, uint32_t maxMatchCount);
WebPage.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
PDFViewController.h 70 void findString(const String&, FindOptions, unsigned maxMatchCount);
71 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
WKViewInternal.h 73 - (void)_findStringInCustomRepresentation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)count;
74 - (void)_countStringMatchesInCustomRepresentation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)count;
PageClientImpl.h 105 virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
106 virtual void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
PageClientImpl.mm 363 void PageClientImpl::findStringInCustomRepresentation(const String& string, FindOptions options, unsigned maxMatchCount)
365 [m_wkView _findStringInCustomRepresentation:string withFindOptions:options maxMatchCount:maxMatchCount];
368 void PageClientImpl::countStringMatchesInCustomRepresentation(const String& string, FindOptions options, unsigned maxMatchCount)
370 [m_wkView _countStringMatchesInCustomRepresentation:string withFindOptions:options maxMatchCount:maxMatchCount];
PDFViewController.mm 605 void PDFViewController::findString(const String& string, FindOptions options, unsigned maxMatchCount)
613 if (matchCount > maxMatchCount)
614 matchCount = maxMatchCount;
626 void PDFViewController::countStringMatches(const String& string, FindOptions options, unsigned maxMatchCount)
631 if (matchCount > maxMatchCount)
632 matchCount = maxMatchCount;
WKView.mm     [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpage_p.h 97 virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) { }
98 virtual void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) { }
  /external/webkit/Source/WebKit2/UIProcess/
PageClient.h 155 virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) = 0;
156 virtual void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) = 0;
WebPageProxy.h 360 void findString(const String&, FindOptions, unsigned maxMatchCount);
362 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
    [all...]
WebPageProxy.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.cpp 336 void WKPageFindString(WKPageRef pageRef, WKStringRef string, WKFindOptions options, unsigned maxMatchCount)
338 toImpl(pageRef)->findString(toImpl(string)->string(), toFindOptions(options), maxMatchCount);
346 void WKPageCountStringMatches(WKPageRef pageRef, WKStringRef string, WKFindOptions options, unsigned maxMatchCount)
348 toImpl(pageRef)->countStringMatches(toImpl(string)->string(), toFindOptions(options), maxMatchCount);
WKPage.h 346 WK_EXPORT void WKPageFindString(WKPageRef page, WKStringRef string, WKFindOptions findOptions, unsigned maxMatchCount);
348 WK_EXPORT void WKPageCountStringMatches(WKPageRef page, WKStringRef string, WKFindOptions findOptions, unsigned maxMatchCount);
  /external/webkit/Source/WebKit2/UIProcess/win/
WebView.h 188 virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
189 virtual void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);

Completed in 207 milliseconds