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

  /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) {
  /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/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));
  /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/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/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...]
  /packages/inputmethods/LatinIME/native/src/
correction.cpp 647 const int matchCount = inputLength - correction->mProximityCount - excessiveCount;
691 const int matchWeight = powerIntCapped(typedLetterMultiplier, matchCount);
    [all...]
  /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/WebCore/editing/
Editor.cpp     [all...]

Completed in 352 milliseconds