Home | History | Annotate | Download | only in UIProcess

Lines Matching refs:maxMatchCount

1153 void WebPageProxy::findString(const String& string, FindOptions options, unsigned maxMatchCount)
1156 m_pageClient->findStringInCustomRepresentation(string, options, maxMatchCount);
1158 process()->send(Messages::WebPage::FindString(string, options, maxMatchCount), m_pageID);
1166 void WebPageProxy::countStringMatches(const String& string, FindOptions options, unsigned maxMatchCount)
1169 m_pageClient->countStringMatchesInCustomRepresentation(string, options, maxMatchCount);
1176 process()->send(Messages::WebPage::CountStringMatches(string, options, maxMatchCount), m_pageID);