Searched defs:matchCount (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/
H A DWebFindClient.cpp33 void WebFindClient::didFindString(WebPageProxy* page, const String& string, uint32_t matchCount) argument
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) argument
55 m_client.didCountStringMatches(toAPI(page), toAPI(string.impl()), matchCount, m_client.clientInfo);
H A DWebPageProxy.cpp2203 void WebPageProxy::didCountStringMatches(const String& string, uint32_t matchCount) argument
2205 m_findClient.didCountStringMatches(this, string, matchCount);
2214 void WebPageProxy::didFindString(const String& string, uint32_t matchCount) argument
2216 m_findClient.didFindString(this, string, matchCount);
/external/icu4c/samples/csdet/
H A Dcsdet.c29 int32_t inputLength, match, matchCount = 0; local
54 csm = ucsdet_detectAll(csd, &matchCount, &status);
56 for(match = 0; match < matchCount; match += 1) {
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DFindController.cpp71 unsigned matchCount = m_webPage->corePage()->markAllMatchesForText(string, core(options), false, maxMatchCount + 1); local
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); local
119 if (matchCount > maxMatchCount) {
121 matchCount = static_cast<unsigned>(kWKMoreThanMaximumMatchCount);
124 m_webPage->send(Messages::WebPageProxy::DidFindString(string, matchCount));
/external/icu4c/layout/
H A DContextualSubstSubtables.cpp212 le_uint16 matchCount = SWAPW(subRuleTable->glyphCount) - 1; local
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; local
267 if (matchGlyphClasses(subClassRuleTable->classArray, matchCount, glyphIterator, classDefinitionTable)) {
269 (const SubstitutionLookupRecord *) &subClassRuleTable->classArray[matchCount];
273 return matchCount + 1;
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DRedundentExprEliminator.java234 int matchCount = 0;
260 diagnoseMultistepList(matchCount, lengthToTest, isGlobal);
416 int matchCount,
420 if (matchCount > 0)
423 "Found multistep matches: " + matchCount + ", " + lengthToTest + " length");
415 diagnoseMultistepList( int matchCount, int lengthToTest, boolean isGlobal) argument
/external/icu4c/test/intltest/
H A Dcsdetest.cpp171 int32_t matchCount = 0; local
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; local
729 const UCharsetMatch **matches = ucsdet_detectAll(csd, &matchCount, &status);
737 for (i=0; i<matchCount; i++) {
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringImpl.cpp826 unsigned matchCount = 0; local
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; local
889 ++matchCount;
894 if (!matchCount)
897 unsigned newSize = m_length - matchCount * patternLengt
[all...]
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrJIT.cpp114 void matchCharacterClassRange(RegisterID character, JumpList& failures, JumpList& matchDest, const CharacterRange* ranges, unsigned count, unsigned* matchIndex, const UChar* matches, unsigned matchCount) argument
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))
/external/webkit/Source/WebCore/editing/
H A DEditor.cpp3084 unsigned matchCount = 0; local
3098 ++matchCount;
3104 if (limit > 0 && matchCount >= limit)
3135 return matchCount;
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.cpp1635 int matchCount = 0; local
1659 ++matchCount;
1681 m_activeMatchIndex = matchCount - 1;
1713 if (matchCount > 0) {
1716 m_lastMatchCount += matchCount;
1719 mainFrameImpl->increaseMatchCount(matchCount, identifier);
1726 if (matchCount > 0)

Completed in 241 milliseconds