/external/icu/icu4c/source/i18n/ |
ztrans.cpp | 28 return (ZTrans*) new TimeZoneTransition(time,*(TimeZoneRule*)from,*(TimeZoneRule*)to); 33 return (ZTrans*) new TimeZoneTransition(); 38 delete (TimeZoneTransition*)trans; 43 return (ZTrans*) (((TimeZoneTransition*)trans)->TimeZoneTransition::clone()); 48 return *(const TimeZoneTransition*)trans1 == *(const TimeZoneTransition*)trans2; 53 return ((TimeZoneTransition*)trans)->TimeZoneTransition::getTime(); 58 return ((TimeZoneTransition*)trans)->TimeZoneTransition::setTime(time) [all...] |
tztrans.cpp | 19 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(TimeZoneTransition) 21 TimeZoneTransition::TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to) 25 TimeZoneTransition::TimeZoneTransition() 29 TimeZoneTransition::TimeZoneTransition(const TimeZoneTransition& source) 40 TimeZoneTransition::~TimeZoneTransition() { [all...] |
olsontz.h | 237 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const; 247 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const; 393 TimeZoneTransition *firstTZTransition; 395 TimeZoneTransition *firstFinalTZTransition;
|
vzone.cpp | 162 return ((VTimeZone*)zone)->VTimeZone::getNextTransition(base, inclusive, *(TimeZoneTransition*)result); 167 return ((VTimeZone*)zone)->VTimeZone::getPreviousTransition(base, inclusive, *(TimeZoneTransition*)result);
|
basictz.cpp | 68 TimeZoneTransition tr1, tr2; 146 TimeZoneTransition tr; 295 TimeZoneTransition tzt; 402 TimeZoneTransition tzt0;
|
olsontz.cpp | 796 firstTZTransition = new TimeZoneTransition((UDate)transitionTime(firstTZTransitionIdx), 828 TimeZoneTransition tzt; 865 firstFinalTZTransition = new TimeZoneTransition(); 879 OlsonTimeZone::getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const { [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
tztrans.h | 27 * <code>TimeZoneTransition</code> is a class representing a time zone transition. 31 class U_I18N_API TimeZoneTransition : public UObject { 34 * Constructs a <code>TimeZoneTransition</code> with the time and the rules before/after 42 TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to); 45 * Constructs an empty <code>TimeZoneTransition</code> 48 TimeZoneTransition(); 52 * @param source The TimeZoneTransition object to be copied. 55 TimeZoneTransition(const TimeZoneTransition& source); 61 ~TimeZoneTransition(); [all...] |
basictz.h | 50 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const = 0; 60 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const = 0;
|
rbtz.h | 258 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const; 268 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const;
|
simpletz.h | 42 class TimeZoneTransition; [all...] |
vtzone.h | 322 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const; 332 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const;
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
TimeZoneTransition.java | 10 * <code>TimeZoneTransition</code> is a class representing a time zone transition. 16 public class TimeZoneTransition { 22 * Constructs a <code>TimeZoneTransition</code> with the time and the rules before/after 29 public TimeZoneTransition(long time, TimeZoneRule from, TimeZoneRule to) { 63 * Returns a <code>String</code> representation of this <code>TimeZoneTransition</code> object.
|
RuleBasedTimeZone.java | 32 private transient List<TimeZoneTransition> historicTransitions; 171 TimeZoneTransition tt = getNextTransition(now, false); 195 TimeZoneTransition tt = getNextTransition(time, false); 322 public TimeZoneTransition getNextTransition(long base, boolean inclusive) { 328 TimeZoneTransition result = null; 329 TimeZoneTransition tzt = historicTransitions.get(0); 348 tzt = new TimeZoneTransition(start0.getTime(), finalRules[1], finalRules[0]); 350 tzt = new TimeZoneTransition(start1.getTime(), finalRules[0], finalRules[1]); 360 TimeZoneTransition prev = tzt; 394 public TimeZoneTransition getPreviousTransition(long base, boolean inclusive) [all...] |
BasicTimeZone.java | 25 * @see android.icu.util.TimeZoneTransition 46 public abstract TimeZoneTransition getNextTransition(long base, boolean inclusive); 59 public abstract TimeZoneTransition getPreviousTransition(long base, boolean inclusive); 131 TimeZoneTransition tr1 = getNextTransition(time, false); 132 TimeZoneTransition tr2 = ((BasicTimeZone)tz).getNextTransition(time, false); 227 TimeZoneTransition tzt = getPreviousTransition(start, true); 381 TimeZoneTransition tr = getNextTransition(date, false);
|
SimpleTimeZone.java | [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
TimeZoneTransition.java | 9 * <code>TimeZoneTransition</code> is a class representing a time zone transition. 15 public class TimeZoneTransition { 21 * Constructs a <code>TimeZoneTransition</code> with the time and the rules before/after 30 public TimeZoneTransition(long time, TimeZoneRule from, TimeZoneRule to) { 70 * Returns a <code>String</code> representation of this <code>TimeZoneTransition</code> object.
|
RuleBasedTimeZone.java | 31 private transient List<TimeZoneTransition> historicTransitions; 186 TimeZoneTransition tt = getNextTransition(now, false); 211 TimeZoneTransition tt = getNextTransition(time, false); 344 public TimeZoneTransition getNextTransition(long base, boolean inclusive) { 350 TimeZoneTransition result = null; 351 TimeZoneTransition tzt = historicTransitions.get(0); 370 tzt = new TimeZoneTransition(start0.getTime(), finalRules[1], finalRules[0]); 372 tzt = new TimeZoneTransition(start1.getTime(), finalRules[0], finalRules[1]); 382 TimeZoneTransition prev = tzt; 418 public TimeZoneTransition getPreviousTransition(long base, boolean inclusive) [all...] |
BasicTimeZone.java | 24 * @see com.ibm.icu.util.TimeZoneTransition 47 public abstract TimeZoneTransition getNextTransition(long base, boolean inclusive); 62 public abstract TimeZoneTransition getPreviousTransition(long base, boolean inclusive); 138 TimeZoneTransition tr1 = getNextTransition(time, false); 139 TimeZoneTransition tr2 = ((BasicTimeZone)tz).getNextTransition(time, false); 238 TimeZoneTransition tzt = getPreviousTransition(start, true); 394 TimeZoneTransition tr = getNextTransition(date, false);
|
SimpleTimeZone.java | [all...] |
/external/icu/icu4j/samples/src/com/ibm/icu/samples/util/timezone/ |
BasicTimeZoneExample.java | 17 import com.ibm.icu.util.TimeZoneTransition; 44 TimeZoneTransition trans = btz.getNextTransition(start, false /* not including start time */); 71 TimeZoneTransition trans = btz.getPreviousTransition(start, false /* not including start time */);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
OlsonTimeZone.java | 26 import android.icu.util.TimeZoneTransition; 194 TimeZoneTransition tzt = getPreviousTransition(current, false); [all...] |
TimeZoneGenericNames.java | 34 import android.icu.util.TimeZoneTransition; 354 TimeZoneTransition before = btz.getPreviousTransition(date, true); 360 TimeZoneTransition after = btz.getNextTransition(date, false); [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
OlsonTimeZone.java | 25 import com.ibm.icu.util.TimeZoneTransition; 192 TimeZoneTransition tzt = getPreviousTransition(current, false); [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/ |
TimeZoneRuleTest.java | 31 import android.icu.util.TimeZoneTransition; 489 TimeZoneTransition tzt = olsontz.getNextTransition(startTime, false); 549 TimeZoneTransition tzt = olsontz.getNextTransition(startTime, false); [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/ |
TimeZoneRuleTest.java | 30 import com.ibm.icu.util.TimeZoneTransition; 485 TimeZoneTransition tzt = olsontz.getNextTransition(startTime, false); 545 TimeZoneTransition tzt = olsontz.getNextTransition(startTime, false); [all...] |