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