Lines Matching refs:myEnum
839 UEnumeration *myEnum = NULL; in ucnv_openStandardNames() local
849 myEnum = static_cast<UEnumeration *>(uprv_malloc(sizeof(UEnumeration))); in ucnv_openStandardNames()
850 if (myEnum == NULL) { in ucnv_openStandardNames()
854 uprv_memcpy(myEnum, &gEnumAliases, sizeof(UEnumeration)); in ucnv_openStandardNames()
858 uprv_free(myEnum); in ucnv_openStandardNames()
863 myEnum->context = myContext; in ucnv_openStandardNames()
867 return myEnum; in ucnv_openStandardNames()
1065 UEnumeration *myEnum = NULL; in ucnv_openAllNames() local
1069 myEnum = static_cast<UEnumeration *>(uprv_malloc(sizeof(UEnumeration))); in ucnv_openAllNames()
1070 if (myEnum == NULL) { in ucnv_openAllNames()
1074 uprv_memcpy(myEnum, &gEnumAllConverters, sizeof(UEnumeration)); in ucnv_openAllNames()
1078 uprv_free(myEnum); in ucnv_openAllNames()
1082 myEnum->context = myContext; in ucnv_openAllNames()
1084 return myEnum; in ucnv_openAllNames()