/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
D | FindController.cpp | 66 …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()
|
D | FindController.h | 51 void findString(const String&, FindOptions, unsigned maxMatchCount); 53 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
|
D | WebPage.messages.in | 116 FindString(WTF::String string, uint32_t findOptions, unsigned maxMatchCount) 118 CountStringMatches(WTF::String string, uint32_t findOptions, unsigned maxMatchCount)
|
D | WebPage.h | 516 void findString(const String&, uint32_t findOptions, uint32_t maxMatchCount); 518 void countStringMatches(const String&, uint32_t findOptions, uint32_t maxMatchCount);
|
D | WebPage.cpp | 1666 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/ |
D | PDFViewController.h | 70 void findString(const String&, FindOptions, unsigned maxMatchCount); 71 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
|
D | WKViewInternal.h | 73 …ation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)co… 74 …ation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)co…
|
D | PageClientImpl.mm | 363 …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];
|
D | PageClientImpl.h | 105 … virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount); 106 … void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
|
D | PDFViewController.mm | 605 …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;
|
D | WKView.mm | 2271 …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/ |
D | qwkpage_p.h | 97 …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/ |
D | PageClient.h | 155 …tual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) = 0; 156 …d countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) = 0;
|
D | WebPageProxy.cpp | 1153 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()
|
D | WebPageProxy.h | 360 void findString(const String&, FindOptions, unsigned maxMatchCount); 362 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
|
/external/webkit/Source/WebKit2/UIProcess/API/C/ |
D | WKPage.cpp | 336 …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()
|
D | WKPage.h | 346 …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/ |
D | WebView.h | 188 … virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount); 189 … void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
|
/external/webkit/Source/WebKit2/ |
D | ChangeLog | 2156 (-[WKView _findStringInCustomRepresentation:withFindOptions:maxMatchCount:]): Added. 2157 (-[WKView _countStringMatchesInCustomRepresentation:withFindOptions:maxMatchCount:]): Added.
|