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

  /external/webkit/Source/WebKit2/UIProcess/
WebFindClient.h 39 void didFindString(WebPageProxy*, const String&, uint32_t matchCount);
41 void didCountStringMatches(WebPageProxy*, const String&, uint32_t matchCount);
WebFindClient.cpp 33 void WebFindClient::didFindString(WebPageProxy* page, const String& string, uint32_t matchCount)
38 m_client.didFindString(toAPI(page), toAPI(string.impl()), matchCount, m_client.clientInfo);
50 void WebFindClient::didCountStringMatches(WebPageProxy* page, const String& string, uint32_t matchCount)
55 m_client.didCountStringMatches(toAPI(page), toAPI(string.impl()), matchCount, m_client.clientInfo);
WebPageProxy.h 363 void didCountStringMatches(const String&, uint32_t matchCount);
365 void didFindString(const String&, uint32_t matchCount);
    [all...]
WebPageProxy.cpp     [all...]
  /external/icu4c/samples/csdet/
csdet.c 29 int32_t inputLength, match, matchCount = 0;
54 csm = ucsdet_detectAll(csd, &matchCount, &status);
56 for(match = 0; match < matchCount; match += 1) {
  /dalvik/vm/jdwp/
JdwpEvent.cpp 388 int matchCount)
392 while (matchCount--) {
562 int matchCount)
566 while (matchCount--) {
856 int matchCount = 0;
860 &matchCount);
863 &matchCount);
866 &matchCount);
869 &matchCount);
872 if (matchCount != 0)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.cpp 71 unsigned matchCount = m_webPage->corePage()->markAllMatchesForText(string, core(options), false, maxMatchCount + 1);
75 if (matchCount > maxMatchCount)
76 matchCount = static_cast<unsigned>(kWKMoreThanMaximumMatchCount);
78 m_webPage->send(Messages::WebPageProxy::DidCountStringMatches(string, matchCount));
116 unsigned matchCount = m_webPage->corePage()->markAllMatchesForText(string, core(options), false, maxMatchCount + 1);
119 if (matchCount > maxMatchCount) {
121 matchCount = static_cast<unsigned>(kWKMoreThanMaximumMatchCount);
124 m_webPage->send(Messages::WebPageProxy::DidFindString(string, matchCount));
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringImpl.cpp 826 unsigned matchCount = 0;
830 ++matchCount;
835 if (!matchCount)
838 if (repStrLength && matchCount > numeric_limits<unsigned>::max() / repStrLength)
841 unsigned replaceSize = matchCount * repStrLength;
842 unsigned newSize = m_length - matchCount;
885 unsigned matchCount = 0;
889 ++matchCount;
894 if (!matchCount)
897 unsigned newSize = m_length - matchCount * patternLength
    [all...]
  /external/icu4c/layout/
ContextualSubstSubtables.cpp 212 le_uint16 matchCount = SWAPW(subRuleTable->glyphCount) - 1;
215 if (matchGlyphIDs(subRuleTable->inputGlyphArray, matchCount, glyphIterator)) {
217 (const SubstitutionLookupRecord *) &subRuleTable->inputGlyphArray[matchCount];
221 return matchCount + 1;
264 le_uint16 matchCount = SWAPW(subClassRuleTable->glyphCount) - 1;
267 if (matchGlyphClasses(subClassRuleTable->classArray, matchCount, glyphIterator, classDefinitionTable)) {
269 (const SubstitutionLookupRecord *) &subClassRuleTable->classArray[matchCount];
273 return matchCount + 1;
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
PDFViewController.mm 612 NSUInteger matchCount = [m_wkPDFView.get() _countMatches:string caseSensitive:caseFlag];
613 if (matchCount > maxMatchCount)
614 matchCount = maxMatchCount;
623 page()->didFindString(string, matchCount);
630 NSUInteger matchCount = [m_wkPDFView.get() _countMatches:string caseSensitive:caseFlag];
631 if (matchCount > maxMatchCount)
632 matchCount = maxMatchCount;
633 page()->didCountStringMatches(string, matchCount);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domconfigparameternames01.js 107 var matchCount = 0;
134 matchCount += 1;
139 assertEquals("definedParameterCount",16,matchCount);
  /packages/inputmethods/LatinIME/native/src/
correction.cpp 647 const int matchCount = inputLength - correction->mProximityCount - excessiveCount;
691 const int matchWeight = powerIntCapped(typedLetterMultiplier, matchCount);
    [all...]
  /external/icu4c/test/intltest/
csdetest.cpp 171 int32_t matchCount = 0;
172 const UCharsetMatch **matches = ucsdet_detectAll(csd.getAlias(), &matchCount, &status);
180 if (matchCount == 0) {
189 for (int32_t m = 0; m < matchCount; m += 1) {
728 int32_t matchCount = 0;
729 const UCharsetMatch **matches = ucsdet_detectAll(csd, &matchCount, &status);
737 for (i=0; i<matchCount; i++) {
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 234 int matchCount = 0;
260 diagnoseMultistepList(matchCount, lengthToTest, isGlobal);
416 int matchCount,
420 if (matchCount > 0)
423 "Found multistep matches: " + matchCount + ", " + lengthToTest + " length");
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.h 231 typedef void (*WKPageDidFindStringCallback)(WKPageRef page, WKStringRef string, unsigned matchCount, const void* clientInfo);
233 typedef void (*WKPageDidCountStringMatchesCallback)(WKPageRef page, WKStringRef string, unsigned matchCount, const void* clientInfo);
  /external/webkit/Source/JavaScriptCore/yarr/
YarrJIT.cpp 114 void matchCharacterClassRange(RegisterID character, JumpList& failures, JumpList& matchDest, const CharacterRange* ranges, unsigned count, unsigned* matchIndex, const UChar* matches, unsigned matchCount)
124 if ((*matchIndex < matchCount) && (matches[*matchIndex] < lo)) {
129 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
131 while ((*matchIndex < matchCount) && (matches[*matchIndex] < lo)) {
141 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
148 while ((*matchIndex < matchCount) && (matches[*matchIndex] <= hi))
    [all...]
  /external/webkit/Source/WebCore/editing/
Editor.cpp     [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebView.mm     [all...]

Completed in 310 milliseconds