Home | History | Annotate | Download | only in i18n

Lines Matching defs:en

302 enumClose(UEnumeration *en) {
303 if(en->context != NULL) {
304 DELETE_ARRAY(en->context);
307 DELETE_ARRAY(en);
316 enumNext(UEnumeration *en, int32_t *resultLength, UErrorCode * /*status*/) {
317 if(((Context *)en->context)->currIndex >= fCSRecognizers_size) {
323 const char *currName = fCSRecognizers[((Context *)en->context)->currIndex]->getName();
327 ((Context *)en->context)->currIndex++;
333 enumReset(UEnumeration *en, UErrorCode *) {
334 ((Context *)en->context)->currIndex = 0;
359 UEnumeration *en = NEW_ARRAY(UEnumeration, 1);
360 memcpy(en, &gCSDetEnumeration, sizeof(UEnumeration));
361 en->context = (void*)NEW_ARRAY(Context, 1);
362 uprv_memset(en->context, 0, sizeof(Context));
363 return en;