Home | History | Annotate | Download | only in i18n

Lines Matching defs:newEntry

441             CanonicalMapEntry* newEntry = (CanonicalMapEntry*)uprv_malloc(sizeof(CanonicalMapEntry));
443 if (newEntry == NULL) {
456 newEntry->id = allocUStringInTable(idLen);
457 if (newEntry->id == NULL) {
459 uprv_free(newEntry);
463 derefZone.extract((UChar*)(newEntry->id), idLen, status);
466 uprv_free(newEntry);
470 newEntry->country = NULL;
473 newEntry->id = entry->id;
474 newEntry->country = entry->country;
481 deleteCanonicalMapEntry(newEntry);
485 uhash_put(canonicalMap, key, newEntry, &status);