Lines Matching refs:date
35 UnicodeString& format(UTimeZoneFormatStyle style, const TimeZone& tz, UDate date,
48 …UnicodeString& formatGeneric(const TimeZone& tz, UTimeZoneGenericNameType genType, UDate date, Uni…
51 UDate date, UnicodeString& name, UTimeZoneTimeType *timeType) const;
122 TimeZoneFormatImpl::format(UTimeZoneFormatStyle style, const TimeZone& tz, UDate date, in format() argument
129 formatGeneric(tz, UTZGNM_LOCATION, date, name); in format()
132 formatGeneric(tz, UTZGNM_LONG, date, name); in format()
135 formatGeneric(tz, UTZGNM_SHORT, date, name); in format()
138 formatSpecific(tz, UTZNM_LONG_STANDARD, UTZNM_LONG_DAYLIGHT, date, name, timeType); in format()
141 formatSpecific(tz, UTZNM_SHORT_STANDARD, UTZNM_SHORT_DAYLIGHT, date, name, timeType); in format()
144 …(tz, UTZNM_SHORT_STANDARD_COMMONLY_USED, UTZNM_SHORT_DAYLIGHT_COMMONLY_USED, date, name, timeType); in format()
253 TimeZoneFormatImpl::formatGeneric(const TimeZone& tz, UTimeZoneGenericNameType genType, UDate date,… in formatGeneric() argument
269 return gnames->getDisplayName(tz, genType, date, name); in formatGeneric()
274 UDate date, UnicodeString& name, UTimeZoneTimeType *timeType) const { in formatSpecific() argument
281 UBool isDaylight = tz.inDaylightTime(date, status); in formatSpecific()
290 fTimeZoneNames->getDisplayName(UnicodeString(canonicalID), dstType, date, name); in formatSpecific()
292 fTimeZoneNames->getDisplayName(UnicodeString(canonicalID), stdType, date, name); in formatSpecific()
384 UnicodeString& format(UTimeZoneFormatStyle style, const TimeZone& tz, UDate date,
493 TimeZoneFormatDelegate::format(UTimeZoneFormatStyle style, const TimeZone& tz, UDate date, in format() argument
495 return fTZfmtCacheEntry->tzfmt->format(style, tz, date, name, timeType); in format()