Lines Matching full:test2
572 UChar* test2;
582 test2=(UChar*)malloc(sizeof(UChar) * 6);
584 u_uastrcpy(test2, "abcda");
588 doAssert( (!ucol_equal(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" != \"abcda\" ");
589 doAssert( (ucol_greater(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" >>> \"abcda\" ");
590 doAssert( (ucol_greaterOrEqual(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" >>> \"abcda\"");
595 doAssert( (ucol_equal(col, test1, u_strlen(test1), test2, u_strlen(test2) )), "Result should be \"Abcda\" == \"abcda\"");
596 doAssert( (!ucol_greater(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" == \"abcda\"");
597 doAssert( (ucol_greaterOrEqual(col, test1, u_strlen(test1), test2, u_strlen(test2) )), "Result should be \"Abcda\" == \"abcda\"");
602 doAssert( (ucol_equal(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" == \"abcda\"");
603 doAssert( (!ucol_greater(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" == \"abcda\"");
604 doAssert( (ucol_greaterOrEqual(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" == \"abcda\"");
610 free(test2);
658 UChar test2[6];
677 u_uastrcpy(test2, "abcda");
804 doAssert( (ucol_equal(someCollators[index], test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"abcda\" == \"abCda\"");
811 doAssert( (ucol_greater(someClonedCollators[index], test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"abCda\" >>> \"abcda\" ");
1034 UChar *test1, *test2, *test3;
1071 test2=(UChar*)malloc(sizeof(UChar) * 6);
1075 memset(test2,0xFE, sizeof(UChar)*6);
1080 u_uastrcpy(test2, "abcda");
1090 sortklen=ucol_getSortKey(col, test2, u_strlen(test2), NULL, 0);
1093 ucol_getSortKey(col, test2, u_strlen(test2), sortk2, sortklen+1);
1096 sortklen=ucol_getSortKey(col, test2, u_strlen(test3), NULL, 0);
1099 ucol_getSortKey(col, test2, u_strlen(test2), sortk3, sortklen+1);
1141 sortklen=ucol_getSortKey(col, test2, u_strlen(test2), NULL, 0);
1143 ucol_getSortKey(col, test2, u_strlen(test2), sortk2, sortklen+1);
1169 free(test2);
1180 UChar *test1, *test2, *test3;
1189 test2=(UChar*)malloc(sizeof(UChar) * 6);
1192 u_uastrcpy(test2, "abcda");
1199 sortk2len=ucol_getSortKey(col, test2, u_strlen(test2), NULL, 0);
1201 ucol_getSortKey(col, test2, u_strlen(test2), sortk2, sortk2len+1);
1202 sortk3len=ucol_getSortKey(col, test2, u_strlen(test3), NULL, 0);
1204 ucol_getSortKey(col, test2, u_strlen(test2), sortk3, sortk3len+1);
1210 doAssert( !(ucol_keyHashCode(sortk1, sortk1len) == ucol_keyHashCode(sortk2, sortk2len)), "Hash test2 result incorrect" );
1219 free(test2);