Lines Matching refs:nameinfo
709 ZNameInfo *nameinfo = (ZNameInfo *)uprv_malloc(sizeof(ZNameInfo)); in addNamesIntoTrie() local
710 if (nameinfo == NULL) { in addNamesIntoTrie()
714 nameinfo->mzID = mzID; in addNamesIntoTrie()
715 nameinfo->tzID = tzID; in addNamesIntoTrie()
716 nameinfo->type = getTZNameType((UTimeZoneNameTypeIndex)i); in addNamesIntoTrie()
717 trie.put(name, nameinfo, status); // trie.put() takes ownership of the key in addNamesIntoTrie()
946 ZNameInfo *nameinfo = (ZNameInfo *)node->getValue(i); in handleMatch() local
947 if (nameinfo == NULL) { in handleMatch()
950 if ((nameinfo->type & fTypes) != 0) { in handleMatch()
960 if (nameinfo->tzID) { in handleMatch()
961 … fResults->addZone(nameinfo->type, matchLength, UnicodeString(nameinfo->tzID, -1), status); in handleMatch()
963 U_ASSERT(nameinfo->mzID); in handleMatch()
964 … fResults->addMetaZone(nameinfo->type, matchLength, UnicodeString(nameinfo->mzID, -1), status); in handleMatch()