Home | History | Annotate | Download | only in cintltst

Lines Matching defs:coll

1644     UCollator *coll = NULL;
1660 coll = ucol_openFromShortString(search.collator, FALSE, NULL, &status);
1663 coll = ucol_open("en_US"/*uloc_getDefault()*/, &status);
1664 ucol_setStrength(coll, search.strength);
1671 usearch_setCollator(strsrch, coll, &status);
1684 ucol_close(coll);
2326 UCollator *coll = NULL;
2335 coll = ucol_open("", &status);
2341 ucol_setAttribute(coll, UCOL_NUMERIC_COLLATION, UCOL_ON, &status);
2343 strsrch = usearch_openFromCollator(pattern, 1, text, 1, coll, NULL, &status);
2352 ucol_close(coll);
2359 UCollator *coll = NULL;
2365 coll = ucol_open("en_GB", &status);
2370 ucol_setAttribute(coll, UCOL_STRENGTH, UCOL_PRIMARY, &status);
2371 ucol_setAttribute(coll, UCOL_CASE_LEVEL, UCOL_ON, &status);
2372 ucol_setAttribute(coll, UCOL_ALTERNATE_HANDLING, UCOL_NON_IGNORABLE, &status);
2377 search = usearch_openFromCollator(value, 2, usrcstr, 22, coll, NULL, &status);
2400 if (coll != NULL) {
2401 ucol_close(coll);
2413 UCollator *coll;
2460 coll = ucol_open("en_US", &ec);
2465 ucol_setStrength(coll, UCOL_IDENTICAL);
2469 TEXT_LEN, coll, NULL, &ec);
2472 if (coll != NULL && search != NULL) {
2496 ucol_close(coll);
2502 UCollator *coll;
2517 coll = ucol_open ("en_US", &ec);
2522 ucol_setStrength( coll, UCOL_TERTIARY);
2525 search = usearch_openFromCollator (pattern, pLen, text, tLen, coll, NULL, &ec);
2528 if (coll != NULL && search != NULL) {
2541 ucol_setStrength(coll, UCOL_IDENTICAL);
2553 ucol_close(coll);