Lines Matching refs:myEnum
828 UEnumeration *myEnum = NULL; in ucnv_openStandardNames() local
838 myEnum = uprv_malloc(sizeof(UEnumeration)); in ucnv_openStandardNames()
839 if (myEnum == NULL) { in ucnv_openStandardNames()
843 uprv_memcpy(myEnum, &gEnumAliases, sizeof(UEnumeration)); in ucnv_openStandardNames()
847 uprv_free(myEnum); in ucnv_openStandardNames()
852 myEnum->context = myContext; in ucnv_openStandardNames()
856 return myEnum; in ucnv_openStandardNames()
1051 UEnumeration *myEnum = NULL; in ucnv_openAllNames() local
1055 myEnum = uprv_malloc(sizeof(UEnumeration)); in ucnv_openAllNames()
1056 if (myEnum == NULL) { in ucnv_openAllNames()
1060 uprv_memcpy(myEnum, &gEnumAllConverters, sizeof(UEnumeration)); in ucnv_openAllNames()
1064 uprv_free(myEnum); in ucnv_openAllNames()
1068 myEnum->context = myContext; in ucnv_openAllNames()
1070 return myEnum; in ucnv_openAllNames()