Home | History | Annotate | Download | only in intltest

Lines Matching refs:coll

88 void UCAConformanceTest::setCollNonIgnorable(UCollator *coll) 
90 ucol_setAttribute(coll, UCOL_NORMALIZATION_MODE, UCOL_ON, &status);
91 ucol_setAttribute(coll, UCOL_CASE_FIRST, UCOL_OFF, &status);
92 ucol_setAttribute(coll, UCOL_CASE_LEVEL, UCOL_OFF, &status);
93 ucol_setAttribute(coll, UCOL_STRENGTH, UCOL_TERTIARY, &status);
94 ucol_setAttribute(coll, UCOL_ALTERNATE_HANDLING, UCOL_NON_IGNORABLE, &status);
97 void UCAConformanceTest::setCollShifted(UCollator *coll)
99 ucol_setAttribute(coll, UCOL_NORMALIZATION_MODE, UCOL_ON, &status);
100 ucol_setAttribute(coll, UCOL_CASE_FIRST, UCOL_OFF, &status);
101 ucol_setAttribute(coll, UCOL_CASE_LEVEL, UCOL_OFF, &status);
102 ucol_setAttribute(coll, UCOL_STRENGTH, UCOL_QUATERNARY, &status);
103 ucol_setAttribute(coll, UCOL_ALTERNATE_HANDLING, UCOL_SHIFTED, &status);
152 void UCAConformanceTest::testConformance(UCollator *coll)
194 resLen = ucol_getSortKey(coll, buffer, buflen, newSk, 1024);
200 cmpres = ucol_strcoll(coll, oldB, oldBlen, buffer, buflen);
201 cmpres2 = ucol_strcoll(coll, buffer, buflen, oldB, oldBlen);