Home | History | Annotate | Download | only in cintltst

Lines Matching full:u_strlen

323     doStrcoll(col, source, u_strlen(source), target, u_strlen(target), UCOL_LESS, "ab < abc comparison failed");
328 doStrcoll(col, source, u_strlen(source), target, u_strlen(target), UCOL_LESS, "ab < AB comparison failed");
333 doStrcoll(col, source, u_strlen(source), target, u_strlen(target), UCOL_GREATER, "black-bird > blackbird comparison failed");
338 doStrcoll(col, source, u_strlen(source), target, u_strlen(target), UCOL_LESS, "black bird < black-bird comparison failed");
343 doStrcoll(col, source, u_strlen(source), target, u_strlen(target), UCOL_GREATER, "Hello > hello comparison failed");
460 col1 = ucol_openRules(ruleset1, u_strlen(ruleset1), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL,&status);
469 col2 = ucol_openRules(ruleset2, u_strlen(ruleset2), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &status);
495 col4=ucol_openRules(rule2, u_strlen(rule2), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &status);
513 col1 = ucol_openRules(ruleset1, u_strlen(ruleset1), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &status);
550 col1 = ucol_openRules(ruleset1, u_strlen(ruleset1), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &status);
580 doAssert( (!ucol_equal(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" != \"abcda\" ");
581 doAssert( (ucol_greater(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" >>> \"abcda\" ");
582 doAssert( (ucol_greaterOrEqual(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" >>> \"abcda\"");
587 doAssert( (ucol_equal(col, test1, u_strlen(test1), test2, u_strlen(test2) )), "Result should be \"Abcda\" == \"abcda\"");
588 doAssert( (!ucol_greater(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" == \"abcda\"");
589 doAssert( (ucol_greaterOrEqual(col, test1, u_strlen(test1), test2, u_strlen(test2) )), "Result should be \"Abcda\" == \"abcda\"");
594 doAssert( (ucol_equal(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" == \"abcda\"");
595 doAssert( (!ucol_greater(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" == \"abcda\"");
596 doAssert( (ucol_greaterOrEqual(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" == \"abcda\"");
754 doAssert( (ucol_greater(col, umlautUStr, u_strlen(umlautUStr), oeStr, u_strlen(oeStr))), "Original German phonebook collation sorts differently than expected");
755 doAssert( (ucol_greater(someClonedCollators[0], umlautUStr, u_strlen(umlautUStr), oeStr, u_strlen(oeStr))), "Cloned German phonebook collation sorts differently than expected");
792 doAssert( (ucol_equal(someCollators[idx], test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"abcda\" == \"abCda\"");
799 doAssert( (ucol_greater(someClonedCollators[idx], test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"abCda\" >>> \"abcda\" ");
1027 sortKeyLen1 = ucol_getSortKey(c1, str, u_strlen(str), NULL, 0);
1030 ucol_getSortKey(c1, str, u_strlen(str), sortKey1, sortKeyLen1 + 1);
1033 sortKeyLen2 = ucol_getSortKey(c2, str, u_strlen(str), NULL, 0);
1036 ucol_getSortKey(c2, str, u_strlen(str), sortKey2, sortKeyLen2 + 1);
1125 sortklen=ucol_getSortKey(col, test1, u_strlen(test1), NULL, 0);
1128 ucol_getSortKey(col, test1, u_strlen(test1), sortk1, sortklen+1);
1130 sortklen=ucol_getSortKey(col, test2, u_strlen(test2), NULL, 0);
1133 ucol_getSortKey(col, test2, u_strlen(test2), sortk2, sortklen+1);
1136 sortklen=ucol_getSortKey(col, test2, u_strlen(test3), NULL, 0);
1139 ucol_getSortKey(col, test2, u_strlen(test2), sortk3, sortklen+1);
1176 sortklen=ucol_getSortKey(col, test1, u_strlen(test1), NULL, 0);
1178 ucol_getSortKey(col, test1, u_strlen(test1), sortk1, sortklen+1);
1179 sortklen=ucol_getSortKey(col, test2, u_strlen(test2), NULL, 0);
1181 ucol_getSortKey(col, test2, u_strlen(test2), sortk2, sortklen+1);
1234 sortk1len=ucol_getSortKey(col, test1, u_strlen(test1), NULL, 0);
1236 ucol_getSortKey(col, test1, u_strlen(test1), sortk1, sortk1len+1);
1237 sortk2len=ucol_getSortKey(col, test2, u_strlen(test2), NULL, 0);
1239 ucol_getSortKey(col, test2, u_strlen(test2), sortk2, sortk2len+1);
1240 sortk3len=ucol_getSortKey(col, test2, u_strlen(test3), NULL, 0);
1242 ucol_getSortKey(col, test2, u_strlen(test2), sortk3, sortk3len+1);
1290 iterator1 = ucol_openElements(col, testString1, u_strlen(testString1), &status);
1298 iterator2 = ucol_openElements(col, testString1, u_strlen(testString1), &status);
1306 iterator3 = ucol_openElements(col, testString2, u_strlen(testString2), &status);