Home | History | Annotate | Download | only in cintltst

Lines Matching refs:someCollators

653     UCollator * someCollators [CLONETEST_COLLATOR_COUNT];
668 someCollators[0] = ucol_open("en_US", &err);
669 someCollators[1] = ucol_open("ko", &err);
670 someCollators[2] = ucol_open("ja_JP", &err);
671 someCollators[3] = ucol_openRules(sampleRule, -1, UCOL_ON, UCOL_TERTIARY, NULL, &err);
674 ucol_close(someCollators[idx]);
683 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, NULL))
689 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || err != U_MEMORY_ALLOCATION_ERROR)
696 if (NULL == (col = ucol_safeClone(someCollators[0], buffer[0], NULL, &err)) || U_FAILURE(err))
705 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) ||
716 if (NULL == (col = ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err)) || U_FAILURE(err))
725 if (NULL == (col = ucol_safeClone(someCollators[0], 0, &bufferSize, &err)) || err != U_SAFECLONE_ALLOCATED_WARNING)
735 if (NULL == (col = ucol_safeClone(someCollators[0], 0, &bufferSize, &err)) || err != U_SAFECLONE_ALLOCATED_WARNING)
768 ucol_setStrength(someCollators[idx], UCOL_IDENTICAL);
771 ucol_close(ucol_safeClone(someCollators[idx], buffer[idx], &bufferSize, &err));
779 someClonedCollators[idx] = ucol_safeClone(someCollators[idx], buffer[idx], &bufferSize, &err);
784 if (!ucol_equals(someClonedCollators[idx], someCollators[idx])) {
789 ucol_setStrength(someCollators[idx], UCOL_PRIMARY);
790 ucol_setAttribute(someCollators[idx], UCOL_CASE_LEVEL, UCOL_OFF, &err);
792 doAssert( (ucol_equal(someCollators[idx], test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"abcda\" == \"abCda\"");
795 ucol_close(someCollators[idx]);