HomeSort by relevance Sort by last modified time
    Searched refs:TimeZoneNames (Results 1 - 17 of 17) sorted by null

  /external/icu4c/i18n/
tznames.cpp 28 // TimeZoneNames object cache handling
47 TimeZoneNames* names;
99 class TimeZoneNamesDelegate : public TimeZoneNames {
104 virtual UBool operator==(const TimeZoneNames& other) const;
105 virtual UBool operator!=(const TimeZoneNames& other) const {return !operator==(other);};
106 virtual TimeZoneNames* clone() const;
159 TimeZoneNames *tznames = NULL;
228 TimeZoneNamesDelegate::operator==(const TimeZoneNames& other) const {
241 TimeZoneNames*
291 TimeZoneNames::MatchInfoCollection
    [all...]
tznames_impl.h 14 * \brief C++ API: TimeZoneNames object
165 class TimeZoneNamesImpl : public TimeZoneNames {
171 virtual UBool operator==(const TimeZoneNames& other) const;
172 virtual TimeZoneNames* clone() const;
185 TimeZoneNames::MatchInfoCollection* find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const;
tznames_impl.cpp 769 TimeZoneNames::MatchInfoCollection* getMatches(int32_t& maxMatchLen);
774 TimeZoneNames::MatchInfoCollection* fResults;
802 fResults = new TimeZoneNames::MatchInfoCollection();
825 TimeZoneNames::MatchInfoCollection*
828 TimeZoneNames::MatchInfoCollection* results = fResults;
840 // TimeZoneNames implementation class. This is the main
968 TimeZoneNamesImpl::operator==(const TimeZoneNames& other) const {
976 TimeZoneNames*
    [all...]
tzgnames.cpp 287 const TimeZoneNames* fTimeZoneNames;
321 TimeZoneNames::MatchInfoCollection* findTimeZoneNames(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const;
328 // TimeZoneGenericNames is parallel to TimeZoneNames,
356 // TimeZoneNames
357 fTimeZoneNames = TimeZoneNames::createInstance(locale, status);
925 // Find matches in the TimeZoneNames first
926 TimeZoneNames::MatchInfoCollection *tznamesMatches = findTimeZoneNames(text, start, types, status);
    [all...]
tzfmt.cpp 335 fTimeZoneNames = TimeZoneNames::createInstance(locale, status);
507 const TimeZoneNames*
509 return (const TimeZoneNames*)fTimeZoneNames;
513 TimeZoneFormat::adoptTimeZoneNames(TimeZoneNames *tznames) {
521 TimeZoneFormat::setTimeZoneNames(const TimeZoneNames &tznames) {
922 LocalPointer<TimeZoneNames::MatchInfoCollection> specificMatches(fTimeZoneNames->find(text, startIdx, nameTypes, status));
    [all...]
timezone.cpp     [all...]
dtfmtsym.cpp     [all...]
  /external/icu4c/i18n/unicode/
tznames.h 12 * \brief C++ API: TimeZoneNames
81 * <code>TimeZoneNames</code> is an abstract class representing the time zone display name data model defined
122 * The default <code>TimeZoneNames</code> implementation returned by {@link #createInstance}
126 * what locale is used for getting an instance of <code>TimeZoneNames</code>.
130 class U_I18N_API TimeZoneNames : public UObject {
136 virtual ~TimeZoneNames();
139 * Return true if the given TimeZoneNames objects are emantically equal.
144 virtual UBool operator==(const TimeZoneNames& other) const = 0;
147 * Return true if the given TimeZoneNames objects are not semantically
153 UBool operator!=(const TimeZoneNames& other) const { return !operator==(other);
    [all...]
tzfmt.h 259 * Unicode Locale Data Markup Language (LDML)</a>. {@link TimeZoneNames} represents the
264 * @see TimeZoneNames
320 const TimeZoneNames* getTimeZoneNames() const;
326 * @param tznames TimeZoneNames object to be adopted.
329 void adoptTimeZoneNames(TimeZoneNames *tznames);
333 * @param tznames TimeZoneNames object to be set.
336 void setTimeZoneNames(const TimeZoneNames &tznames);
682 /* TimeZoneNames object used by this formatter */
683 TimeZoneNames* fTimeZoneNames;
    [all...]
  /libcore/luni/src/test/java/libcore/icu/
TimeZoneNamesTest.java 26 String[] ids = TimeZoneNames.forLocale(Locale.CANADA);
53 String[] ids = TimeZoneNames.forLocale(Locale.KOREA);
59 assertTrue(TimeZoneNames.forLocale(l) != null);
  /libcore/luni/src/main/native/
libcore_icu_TimeZoneNames.cpp 17 #define LOG_TAG "TimeZoneNames"
62 UniquePtr<TimeZoneNames> names(TimeZoneNames::createInstance(locale, status));
63 if (maybeThrowIcuException(env, "TimeZoneNames::createInstance", status)) {
114 NATIVE_METHOD(TimeZoneNames, fillZoneStrings, "(Ljava/lang/String;[[Ljava/lang/String;)V"),
117 jniRegisterNativeMethods(env, "libcore/icu/TimeZoneNames", gMethods, NELEM(gMethods));
  /libcore/luni/src/main/java/libcore/icu/
TimeZoneNames.java 31 public final class TimeZoneNames {
113 private TimeZoneNames() {}
  /libcore/luni/src/main/java/java/util/
TimeZone.java 24 import libcore.icu.TimeZoneNames;
193 String[][] zoneStrings = TimeZoneNames.getZoneStrings(locale);
194 String result = TimeZoneNames.getDisplayName(zoneStrings, getID(), daylightTime, style);
205 // TODO: should we generate these once, in TimeZoneNames.getDisplayName? Revisit when we
  /libcore/luni/src/main/java/java/text/
DateFormatSymbols.java 29 import libcore.icu.TimeZoneNames;
83 zoneStrings = TimeZoneNames.getZoneStrings(locale);
SimpleDateFormat.java 33 import libcore.icu.TimeZoneNames;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
MccTable.java 33 import libcore.icu.TimeZoneNames;
108 String[] tz = TimeZoneNames.forLocale(locale);
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 775 milliseconds