/external/icu/icu4c/source/i18n/unicode/ |
ucoleitr.h | 71 * . order = ucol_next(c, &success); 80 * ucol_next() returns the collation order of the next. 83 * ucol_reset. That is, ucol_next() and ucol_prev can not be inter-used. 84 * Whenever ucol_prev is to be called after ucol_next() or vice versa, 87 * ucol_prev or ucol_next, the first or last collation order will be returned. 90 * The result of a forward iterate (ucol_next) and reversed result of the 141 * @see ucol_next 158 ucol_next(UCollationElements *elems, UErrorCode *status);
|
/external/icu/icu4c/source/test/cintltst/ |
citertst.c | 88 while (ucol_next(pitr, &status) != UCOL_NULLORDER && 164 while (ucol_next(pitr, &status) != UCOL_NULLORDER && 588 if (U_FAILURE(status) || ucol_next(iter, &status) != UCOL_NULLORDER) { 645 while (ucol_next(iter, &status) != UCOL_NULLORDER && 731 c = ucol_next(iter2, &status); 745 c = ucol_next(iter2, &status); 916 c1 = ucol_next(i1, &status); 917 c2 = ucol_next(i2, &status); 993 ucol_next(testiter, &status); 994 ucol_next(testiter, &status) [all...] |
callcoll.c | 483 while ((order=ucol_next(iter, &status)) != UCOL_NULLORDER) 577 if ((o = ucol_next(iter, &status)) != UCOL_NULLORDER) { [all...] |
capitst.c | 531 uint32_t ce = ucol_next(iter1, &status); 532 uint32_t ce2 = ucol_next(iter2, &status); [all...] |
cmsccoll.c | [all...] |
/external/icu/icu4c/source/i18n/ |
usearch.cpp | 302 // status will be checked in ucol_next(..) later and if it is an 303 // error UCOL_NULLORDER the result of ucol_next(..) and 0 will be 322 while ((ce = ucol_next(coleiter, status)) != UCOL_NULLORDER && 374 // status will be checked in ucol_next(..) later and if it is an 375 // error UCOL_NULLORDER the result of ucol_next(..) and 0 will be 634 int32_t ce = getCE(strsrch, ucol_next(coleiter, &status)); 643 int32_t nextce = ucol_next(coleiter, &status); 646 nextce = ucol_next(coleiter, &status); [all...] |
ucoleitr.cpp | 314 ucol_next(UCollationElements *elems, function
|
/external/icu/icu4c/source/test/perf/collperf/ |
collperf.cpp | 163 while (ucol_next(iter, status) != UCOL_NULLORDER) exec_count++; 168 while (ucol_next(iter, status) != UCOL_NULLORDER) exec_count++; 224 if (ucol_next(iter, status) == UCOL_NULLORDER) {
|
/external/icu/icu4c/source/test/perf/collationperf/ |
collperf.cpp | 847 while (ucol_next(iter, &error) != UCOL_NULLORDER) { 879 printf("Average time per ucol_next() nano seconds %d\n", ns); [all...] |
/external/icu/icu4c/source/test/intltest/ |
colldata.cpp | 73 while ((order = ucol_next(elems, &status)) != UCOL_NULLORDER) {
|
ssearch.cpp | 387 order = ucol_next(elems, &status); [all...] |
/external/icu/icu4c/source/common/unicode/ |
urename.h | 736 #define ucol_next macro [all...] |