Home | History | Annotate | Download | only in i18n

Lines Matching defs:en

348 enumClose(UEnumeration *en) {
349 if(en->context != NULL) {
350 DELETE_ARRAY(en->context);
353 DELETE_ARRAY(en);
362 enumNext(UEnumeration *en, int32_t *resultLength, UErrorCode * /*status*/) {
363 if(((Context *)en->context)->currIndex >= fCSRecognizers_size) {
369 const char *currName = fCSRecognizers[((Context *)en->context)->currIndex]->getName();
373 ((Context *)en->context)->currIndex++;
379 enumReset(UEnumeration *en, UErrorCode *) {
380 ((Context *)en->context)->currIndex = 0;
405 UEnumeration *en = NEW_ARRAY(UEnumeration, 1);
406 memcpy(en, &gCSDetEnumeration, sizeof(UEnumeration));
407 en->context = (void*)NEW_ARRAY(Context, 1);
408 uprv_memset(en->context, 0, sizeof(Context));
409 return en;