Home
last modified time | relevance | path

Searched refs:newSk (Results 1 – 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
DUCAConformanceTest.java206 RawCollationKey oldSk = null, newSk = sk1; in conformanceTest() local
222 coll.getRawCollationKey(buffer, newSk); in conformanceTest()
226 int skres = withSortKeys ? oldSk.compareTo(newSk) : 0; in conformanceTest()
265 errln(" Current key: " + CollationTest.prettify(newSk)); in conformanceTest()
270 oldSk = newSk; in conformanceTest()
274 newSk = sk2; in conformanceTest()
276 newSk = sk1; in conformanceTest()
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DUCAConformanceTest.java203 RawCollationKey oldSk = null, newSk = sk1; in conformanceTest() local
219 coll.getRawCollationKey(buffer, newSk); in conformanceTest()
223 int skres = withSortKeys ? oldSk.compareTo(newSk) : 0; in conformanceTest()
262 errln(" Current key: " + CollationTest.prettify(newSk)); in conformanceTest()
267 oldSk = newSk; in conformanceTest()
271 newSk = sk2; in conformanceTest()
273 newSk = sk1; in conformanceTest()
/external/icu/icu4c/source/test/intltest/
Ducaconf.cpp198 uint8_t *oldSk = NULL, *newSk = sk1; in testConformance() local
225 int32_t resLen = withSortKeys ? coll->getSortKey(buffer, buflen, newSk, 1024) : 0; in testConformance()
229 int32_t skres = withSortKeys ? strcmp((char *)oldSk, (char *)newSk) : 0; in testConformance()
268 prettify(CollationKey(newSk, resLen), newS); in testConformance()
278 oldSk = newSk; in testConformance()
282 newSk = sk2; in testConformance()
286 newSk = sk1; in testConformance()
Dtsmthred.cpp867 uint8_t *oldSk = NULL, *newSk = sk1; in run() local
877 int32_t resLen = coll->getSortKey(lines[i].buff, lines[i].buflen, newSk, 1024); in run()
880 int32_t skres = strcmp((char *)oldSk, (char *)newSk); in run()
909 oldSk = newSk; in run()
914 newSk = (newSk == sk1)?sk2:sk1; in run()