Home | History | Annotate | Download | only in intltest

Lines Matching full:res

25     uint32_t i = 0, res = 0;
39 res = uprv_cnttab_getCE(testTable, 0, i, &status);
44 if(res != i) {
45 errln("Error: expected %i, got %i\n", i, res);
76 uint32_t i = 0, res = 0;
89 res = uprv_cnttab_getCE(testTable, i, 0, &status);
94 if(res != i) {
95 errln("Error: expected %i, got %i\n", i, res);
106 int32_t i = 0, res = 0;
123 res = uprv_cnttab_getCE(testTable, i, 0, &status);
128 if(res != i) {
129 errln("Error: expected %i, got %i\n", i, res);
147 uint32_t i = 0, res = 0;
148 res = uprv_cnttab_changeContraction(testTable, 0, 0x41, 0xAB, &status);
149 if(res != 0) {
157 res = uprv_cnttab_changeContraction(testTable, 0, 0x41, 0xAB, &status);
158 if(res != UCOL_NOT_FOUND) {
163 res = uprv_cnttab_changeContraction(testTable, 0, (UChar)i, 0xAB, &status);
164 if(res != UCOL_NOT_FOUND) {
174 uint32_t res = uprv_cnttab_changeLastCE(testTable, 1, 0xABCD, &status);
175 if(res!=0) {