HomeSort by relevance Sort by last modified time
    Searched refs:TimeZoneTransition (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/icu/icu4c/source/i18n/
ztrans.cpp 30 return (ZTrans*) new TimeZoneTransition(time,*(TimeZoneRule*)from,*(TimeZoneRule*)to);
35 return (ZTrans*) new TimeZoneTransition();
40 delete (TimeZoneTransition*)trans;
45 return (ZTrans*) (((TimeZoneTransition*)trans)->TimeZoneTransition::clone());
50 return *(const TimeZoneTransition*)trans1 == *(const TimeZoneTransition*)trans2;
55 return ((TimeZoneTransition*)trans)->TimeZoneTransition::getTime();
60 return ((TimeZoneTransition*)trans)->TimeZoneTransition::setTime(time)
    [all...]
tztrans.cpp 21 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(TimeZoneTransition)
23 TimeZoneTransition::TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to)
27 TimeZoneTransition::TimeZoneTransition()
31 TimeZoneTransition::TimeZoneTransition(const TimeZoneTransition& source)
42 TimeZoneTransition::~TimeZoneTransition() {
    [all...]
olsontz.h 239 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const;
249 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const;
395 TimeZoneTransition *firstTZTransition;
397 TimeZoneTransition *firstFinalTZTransition;
vzone.cpp 164 return ((VTimeZone*)zone)->VTimeZone::getNextTransition(base, inclusive, *(TimeZoneTransition*)result);
169 return ((VTimeZone*)zone)->VTimeZone::getPreviousTransition(base, inclusive, *(TimeZoneTransition*)result);
  /external/icu/icu4c/source/i18n/unicode/
tztrans.h 29 * <code>TimeZoneTransition</code> is a class representing a time zone transition.
33 class U_I18N_API TimeZoneTransition : public UObject {
36 * Constructs a <code>TimeZoneTransition</code> with the time and the rules before/after
44 TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to);
47 * Constructs an empty <code>TimeZoneTransition</code>
50 TimeZoneTransition();
54 * @param source The TimeZoneTransition object to be copied.
57 TimeZoneTransition(const TimeZoneTransition& source);
63 ~TimeZoneTransition();
    [all...]
basictz.h 52 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const = 0;
62 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const = 0;
rbtz.h 260 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const;
270 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const;
simpletz.h 44 class TimeZoneTransition;
    [all...]
vtzone.h 324 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const;
334 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const;
  /external/icu/android_icu4j/src/main/java/android/icu/util/
TimeZoneTransition.java 12 * <code>TimeZoneTransition</code> is a class representing a time zone transition.
18 public class TimeZoneTransition {
24 * Constructs a <code>TimeZoneTransition</code> with the time and the rules before/after
31 public TimeZoneTransition(long time, TimeZoneRule from, TimeZoneRule to) {
65 * Returns a <code>String</code> representation of this <code>TimeZoneTransition</code> object.
RuleBasedTimeZone.java 34 private transient List<TimeZoneTransition> historicTransitions;
173 TimeZoneTransition tt = getNextTransition(now, false);
197 TimeZoneTransition tt = getNextTransition(time, false);
324 public TimeZoneTransition getNextTransition(long base, boolean inclusive) {
330 TimeZoneTransition result;
331 TimeZoneTransition tzt = historicTransitions.get(0);
350 tzt = new TimeZoneTransition(start0.getTime(), finalRules[1], finalRules[0]);
352 tzt = new TimeZoneTransition(start1.getTime(), finalRules[0], finalRules[1]);
362 TimeZoneTransition prev = tzt;
394 public TimeZoneTransition getPreviousTransition(long base, boolean inclusive)
    [all...]
BasicTimeZone.java 27 * @see android.icu.util.TimeZoneTransition
48 public abstract TimeZoneTransition getNextTransition(long base, boolean inclusive);
61 public abstract TimeZoneTransition getPreviousTransition(long base, boolean inclusive);
133 TimeZoneTransition tr1 = getNextTransition(time, false);
134 TimeZoneTransition tr2 = ((BasicTimeZone)tz).getNextTransition(time, false);
229 TimeZoneTransition tzt = getPreviousTransition(start, true);
383 TimeZoneTransition tr = getNextTransition(date, false);
SimpleTimeZone.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
TimeZoneTransition.java 11 * <code>TimeZoneTransition</code> is a class representing a time zone transition.
17 public class TimeZoneTransition {
23 * Constructs a <code>TimeZoneTransition</code> with the time and the rules before/after
32 public TimeZoneTransition(long time, TimeZoneRule from, TimeZoneRule to) {
72 * Returns a <code>String</code> representation of this <code>TimeZoneTransition</code> object.
RuleBasedTimeZone.java 33 private transient List<TimeZoneTransition> historicTransitions;
188 TimeZoneTransition tt = getNextTransition(now, false);
213 TimeZoneTransition tt = getNextTransition(time, false);
346 public TimeZoneTransition getNextTransition(long base, boolean inclusive) {
352 TimeZoneTransition result;
353 TimeZoneTransition tzt = historicTransitions.get(0);
372 tzt = new TimeZoneTransition(start0.getTime(), finalRules[1], finalRules[0]);
374 tzt = new TimeZoneTransition(start1.getTime(), finalRules[0], finalRules[1]);
384 TimeZoneTransition prev = tzt;
418 public TimeZoneTransition getPreviousTransition(long base, boolean inclusive)
    [all...]
BasicTimeZone.java 26 * @see com.ibm.icu.util.TimeZoneTransition
49 public abstract TimeZoneTransition getNextTransition(long base, boolean inclusive);
64 public abstract TimeZoneTransition getPreviousTransition(long base, boolean inclusive);
140 TimeZoneTransition tr1 = getNextTransition(time, false);
141 TimeZoneTransition tr2 = ((BasicTimeZone)tz).getNextTransition(time, false);
240 TimeZoneTransition tzt = getPreviousTransition(start, true);
396 TimeZoneTransition tr = getNextTransition(date, false);
SimpleTimeZone.java     [all...]
  /packages/apps/Settings/src/com/android/settings/datetime/timezone/
TimeZoneInfoPreferenceController.java 26 import android.icu.util.TimeZoneTransition;
95 final TimeZoneTransition nextDstTransition = findNextDstTransition(timeZone);
116 private TimeZoneTransition findNextDstTransition(TimeZone timeZone) {
121 TimeZoneTransition transition = olsonTimeZone.getNextTransition(
  /libcore/luni/src/test/java/libcore/java/time/zone/
IcuZoneRulesProviderTest.java 24 import android.icu.util.TimeZoneTransition;
99 TimeZoneTransition icuTrans;
136 TimeZoneTransition icuTrans;
157 private static boolean isIcuOnlyTransition(TimeZoneTransition transition) {
166 * Asserts that the ICU {@link TimeZoneTransition} is equivalent to the java.time {@link
170 TimeZoneTransition icuTransition, ZoneOffsetTransition jtTransition) {
  /external/icu/icu4j/samples/src/com/ibm/icu/samples/util/timezone/
BasicTimeZoneExample.java 19 import com.ibm.icu.util.TimeZoneTransition;
46 TimeZoneTransition trans = btz.getNextTransition(start, false /* not including start time */);
73 TimeZoneTransition trans = btz.getPreviousTransition(start, false /* not including start time */);
  /system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
ZoneOffsetPeriod.java 21 import com.ibm.icu.util.TimeZoneTransition;
58 TimeZoneTransition transition =
66 TimeZoneTransition nextTransition =
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
OlsonTimeZone.java 28 import android.icu.util.TimeZoneTransition;
196 TimeZoneTransition tzt = getPreviousTransition(current, false);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
OlsonTimeZone.java 27 import com.ibm.icu.util.TimeZoneTransition;
194 TimeZoneTransition tzt = getPreviousTransition(current, false);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneRuleTest.java 37 import android.icu.util.TimeZoneTransition;
497 TimeZoneTransition tzt = olsontz.getNextTransition(startTime, false);
558 TimeZoneTransition tzt = olsontz.getNextTransition(startTime, false);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneRuleTest.java 36 import com.ibm.icu.util.TimeZoneTransition;
494 TimeZoneTransition tzt = olsontz.getNextTransition(startTime, false);
555 TimeZoneTransition tzt = olsontz.getNextTransition(startTime, false);
    [all...]

Completed in 441 milliseconds

1 2 3