Home
last modified time | relevance | path

Searched refs:matchCount (Results 1 – 12 of 12) sorted by relevance

/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
DIntDiffer.java26 public IntDiffer(int stackSize, int matchCount) { in IntDiffer() argument
28 this.EQUALSIZE = matchCount; in IntDiffer()
29 a = new int[stackSize+matchCount]; in IntDiffer()
30 b = new int[stackSize+matchCount]; in IntDiffer()
/third_party/flutter/skia/third_party/externals/icu/source/samples/csdet/
Dcsdet.c33 int32_t inputLength, match, matchCount = 0; in main() local
58 csm = ucsdet_detectAll(csd, &matchCount, &status); in main()
60 for(match = 0; match < matchCount; match += 1) { in main()
/third_party/icu/icu4c/source/samples/csdet/
Dcsdet.c33 int32_t inputLength, match, matchCount = 0; in main() local
58 csm = ucsdet_detectAll(csd, &matchCount, &status); in main()
60 for(match = 0; match < matchCount; match += 1) { in main()
/third_party/skia/third_party/externals/icu/source/samples/csdet/
Dcsdet.c33 int32_t inputLength, match, matchCount = 0; in main() local
58 csm = ucsdet_detectAll(csd, &matchCount, &status); in main()
60 for(match = 0; match < matchCount; match += 1) { in main()
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/
DRangeTree.java143 private final long matchCount; field in RangeTree.Node
164 this.matchCount = 1L; in Node()
181 long matchCount = canTerminate ? 1 : 0; in Node() local
193 matchCount += Integer.bitCount(e.mask) * e.target.matchCount; in Node()
208 this.matchCount = matchCount; in Node()
903 private final long matchCount; field in RangeTree
912 this.matchCount = 0L; in RangeTree()
919 this.matchCount = root.matchCount; in RangeTree()
1026 long weightedCount = e.target.matchCount * Integer.bitCount(e.mask); in recursiveGet()
1037 while (index >= e.target.matchCount) { in recursiveGet()
[all …]
/third_party/flutter/skia/tools/skdiff/
Dskdiff_html.cpp29 const int matchCount, in print_table_header() argument
55 stream->writeDecAsText(matchCount); in print_table_header()
224 void print_diff_page(const int matchCount, in print_diff_page() argument
283 print_table_header(&outputStream, matchCount, colorThreshold, differences, in print_diff_page()
Dskdiff_html.h14 void print_diff_page(const int matchCount,
/third_party/skia/tools/skdiff/
Dskdiff_html.cpp29 const int matchCount, in print_table_header() argument
55 stream->writeDecAsText(matchCount); in print_table_header()
225 void print_diff_page(const int matchCount, in print_diff_page() argument
284 print_table_header(&outputStream, matchCount, colorThreshold, differences, in print_diff_page()
Dskdiff_html.h14 void print_diff_page(const int matchCount,
/third_party/icu/icu4c/source/test/intltest/
Dcsdetest.cpp183 int32_t matchCount = 0; in checkEncoding() local
184 const UCharsetMatch **matches = ucsdet_detectAll(csd.getAlias(), &matchCount, &status); in checkEncoding()
192 if (matchCount == 0) { in checkEncoding()
201 for (int32_t m = 0; m < matchCount; m += 1) { in checkEncoding()
776 int32_t matchCount = 0; in Ticket6394Test() local
777 const UCharsetMatch **matches = ucsdet_detectAll(csd, &matchCount, &status); in Ticket6394Test()
785 for (i=0; i<matchCount; i++) { in Ticket6394Test()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DCommandProcessor.cpp1374 uint32_t *matchCount) in FindIndex() argument
1392 if (matchCount) in FindIndex()
1394 *matchCount = count; in FindIndex()
DCommandProcessor.h215 uint32_t *matchCount);