Lines Matching refs:myEnum
833 UEnumeration *myEnum = NULL; in ucnv_openStandardNames() local
843 myEnum = static_cast<UEnumeration *>(uprv_malloc(sizeof(UEnumeration))); in ucnv_openStandardNames()
844 if (myEnum == NULL) { in ucnv_openStandardNames()
848 uprv_memcpy(myEnum, &gEnumAliases, sizeof(UEnumeration)); in ucnv_openStandardNames()
852 uprv_free(myEnum); in ucnv_openStandardNames()
857 myEnum->context = myContext; in ucnv_openStandardNames()
861 return myEnum; in ucnv_openStandardNames()
1056 UEnumeration *myEnum = NULL; in ucnv_openAllNames() local
1060 myEnum = static_cast<UEnumeration *>(uprv_malloc(sizeof(UEnumeration))); in ucnv_openAllNames()
1061 if (myEnum == NULL) { in ucnv_openAllNames()
1065 uprv_memcpy(myEnum, &gEnumAllConverters, sizeof(UEnumeration)); in ucnv_openAllNames()
1069 uprv_free(myEnum); in ucnv_openAllNames()
1073 myEnum->context = myContext; in ucnv_openAllNames()
1075 return myEnum; in ucnv_openAllNames()