Lines Matching refs:TimeZoneNamesDelegate
102 class TimeZoneNamesDelegate : public TimeZoneNames { class
104 TimeZoneNamesDelegate(const Locale& locale, UErrorCode& status);
105 virtual ~TimeZoneNamesDelegate();
109 virtual TimeZoneNamesDelegate* clone() const;
126 TimeZoneNamesDelegate();
130 TimeZoneNamesDelegate::TimeZoneNamesDelegate() in TimeZoneNamesDelegate() function in TimeZoneNamesDelegate
134 TimeZoneNamesDelegate::TimeZoneNamesDelegate(const Locale& locale, UErrorCode& status) { in TimeZoneNamesDelegate() function in TimeZoneNamesDelegate
210 TimeZoneNamesDelegate::~TimeZoneNamesDelegate() { in ~TimeZoneNamesDelegate()
223 TimeZoneNamesDelegate::operator==(const TimeZoneNames& other) const { in operator ==()
229 const TimeZoneNamesDelegate* rhs = dynamic_cast<const TimeZoneNamesDelegate*>(&other); in operator ==()
236 TimeZoneNamesDelegate*
237 TimeZoneNamesDelegate::clone() const { in clone()
238 TimeZoneNamesDelegate* other = new TimeZoneNamesDelegate(); in clone()
252 TimeZoneNamesDelegate::getAvailableMetaZoneIDs(UErrorCode& status) const { in getAvailableMetaZoneIDs()
257 TimeZoneNamesDelegate::getAvailableMetaZoneIDs(const UnicodeString& tzID, UErrorCode& status) const… in getAvailableMetaZoneIDs()
262 TimeZoneNamesDelegate::getMetaZoneID(const UnicodeString& tzID, UDate date, UnicodeString& mzID) co… in getMetaZoneID()
267 TimeZoneNamesDelegate::getReferenceZoneID(const UnicodeString& mzID, const char* region, UnicodeStr… in getReferenceZoneID()
272 TimeZoneNamesDelegate::getMetaZoneDisplayName(const UnicodeString& mzID, UTimeZoneNameType type, Un… in getMetaZoneDisplayName()
277 TimeZoneNamesDelegate::getTimeZoneDisplayName(const UnicodeString& tzID, UTimeZoneNameType type, Un… in getTimeZoneDisplayName()
282 TimeZoneNamesDelegate::getExemplarLocationName(const UnicodeString& tzID, UnicodeString& name) cons… in getExemplarLocationName()
287 TimeZoneNamesDelegate::loadAllDisplayNames(UErrorCode& status) { in loadAllDisplayNames()
292 TimeZoneNamesDelegate::getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], … in getDisplayNames()
297 TimeZoneNamesDelegate::find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& s… in find()
311 instance = new TimeZoneNamesDelegate(locale, status); in createInstance()