Lines Matching refs:gCol

205 UCollator     *gCol;  variable
286 …t = ucol_strcoll(gCol, (*(Line **)a)->name, (*(Line **)a)->len, (*(Line **)b)->name, (*(Line **)b)… in ICUstrcmpL()
296 t = ucol_strcoll(gCol, (*(Line **)a)->name, -1, (*(Line **)b)->name, -1); in ICUstrcmp()
406 …t = ucol_getSortKey(gCol, gFileLines[line].name, len, (unsigned char *)gFileLines[line].icuSortKey… in doKeyGen()
557 …r = ucol_strcoll(gCol, (gSortedLines[line])->name, lineLen, (gSortedLines[guess])->name, guessLen); in doBinarySearch()
836 UCollationElements *iter = ucol_openElements(gCol, NULL, 0, &error); in doForwardIterTest()
913 iter = ucol_openElements(gCol, str, strlen, &error); in doForwardIterTest()
998 UCollationElements *iter = ucol_openElements(gCol, NULL, 0, &error); in doBackwardIterTest()
1078 iter = ucol_openElements(gCol, str, strlen, &error); in doBackwardIterTest()
1441 gCol = openRulesCollator(); in main()
1442 if (gCol == 0) {return -1;} in main()
1445 gCol = ucol_open(opt_locale, &status); in main()
1459 ucol_setAttribute(gCol, UCOL_NORMALIZATION_MODE, UCOL_ON, &status); in main()
1466 ucol_setAttribute(gCol, UCOL_FRENCH_COLLATION, UCOL_ON, &status); in main()
1469 ucol_setAttribute(gCol, UCOL_FRENCH_COLLATION, UCOL_OFF, &status); in main()
1472 ucol_setAttribute(gCol, UCOL_CASE_FIRST, UCOL_LOWER_FIRST, &status); in main()
1475 ucol_setAttribute(gCol, UCOL_CASE_FIRST, UCOL_UPPER_FIRST, &status); in main()
1478 ucol_setAttribute(gCol, UCOL_CASE_LEVEL, UCOL_ON, &status); in main()
1481 ucol_setAttribute(gCol, UCOL_ALTERNATE_HANDLING, UCOL_SHIFTED, &status); in main()
1486 ucol_setAttribute(gCol, UCOL_STRENGTH, UCOL_PRIMARY, &status); in main()
1489 ucol_setAttribute(gCol, UCOL_STRENGTH, UCOL_SECONDARY, &status); in main()
1492 ucol_setAttribute(gCol, UCOL_STRENGTH, UCOL_TERTIARY, &status); in main()
1495 ucol_setAttribute(gCol, UCOL_STRENGTH, UCOL_QUATERNARY, &status); in main()
1498 ucol_setAttribute(gCol, UCOL_STRENGTH, UCOL_IDENTICAL, &status); in main()
1615 t = ucol_getSortKey(gCol, gFileLines[line].name, -1, (unsigned char *)buf, sizeof(buf)); in main()
1619 …t = ucol_getSortKey(gCol, gFileLines[line].name, -1, (unsigned char *)gFileLines[line].icuSortKey … in main()
1682 … UCollationElements *CEiter = ucol_openElements(gCol, gFileLines[line].name, -1, &status); in main()