Lines Matching refs:nameinfo
713 ZNameInfo *nameinfo = (ZNameInfo *)uprv_malloc(sizeof(ZNameInfo)); in addNamesIntoTrie() local
714 if (nameinfo == NULL) { in addNamesIntoTrie()
718 nameinfo->mzID = mzID; in addNamesIntoTrie()
719 nameinfo->tzID = tzID; in addNamesIntoTrie()
720 nameinfo->type = getTZNameType((UTimeZoneNameTypeIndex)i); in addNamesIntoTrie()
721 trie.put(name, nameinfo, status); // trie.put() takes ownership of the key in addNamesIntoTrie()
950 ZNameInfo *nameinfo = (ZNameInfo *)node->getValue(i); in handleMatch() local
951 if (nameinfo == NULL) { in handleMatch()
954 if ((nameinfo->type & fTypes) != 0) { in handleMatch()
964 if (nameinfo->tzID) { in handleMatch()
965 … fResults->addZone(nameinfo->type, matchLength, UnicodeString(nameinfo->tzID, -1), status); in handleMatch()
967 U_ASSERT(nameinfo->mzID); in handleMatch()
968 … fResults->addMetaZone(nameinfo->type, matchLength, UnicodeString(nameinfo->mzID, -1), status); in handleMatch()