HomeSort by relevance Sort by last modified time
    Searched defs:rawOffset (Results 1 - 18 of 18) sorted by null

  /dalvik/libcore/support/src/test/java/tests/support/
Support_TimeZone.java 32 int rawOffset;
36 public Support_TimeZone(int rawOffset, boolean useDaylightTime) {
37 this.rawOffset = rawOffset;
43 return rawOffset;
81 rawOffset = p1;
  /external/icu4c/i18n/
olsontz.h 181 virtual void getOffset(UDate date, UBool local, int32_t& rawOffset,
293 int32_t rawOffset(int16_t index) const;
368 OlsonTimeZone::rawOffset(int16_t index) const {
olsontz.cpp 169 int32_t rawOffset = data[0] * U_MILLIS_PER_SECOND;
190 finalZone = new SimpleTimeZone(rawOffset, emptyStr,
487 rawoff = rawOffset(index) * U_MILLIS_PER_SECOND;
491 rawoff = rawOffset(0) * U_MILLIS_PER_SECOND;
648 raw = rawOffset(typeIdx) * U_MILLIS_PER_SECOND;
689 raw = rawOffset(typeIdx) * U_MILLIS_PER_SECOND;
731 raw = rawOffset(0) * U_MILLIS_PER_SECOND;
    [all...]
rbtz.cpp 371 int32_t rawOffset, dstOffset;
373 getOffsetInternal(time, TRUE, kDaylight, kStandard, rawOffset, dstOffset, status);
377 return (rawOffset + dstOffset);
381 RuleBasedTimeZone::getOffset(UDate date, UBool local, int32_t& rawOffset,
383 getOffsetInternal(date, local, kFormer, kLatter, rawOffset, dstOffset, status);
388 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) /*const*/ {
389 getOffsetInternal(date, TRUE, nonExistingTimeOpt, duplicatedTimeOpt, rawOffset, dstOffset, status);
399 int32_t& rawOffset, int32_t& dstOffset,
401 rawOffset = 0;
447 rawOffset = rule->getRawOffset()
    [all...]
timezone.cpp 529 int32_t rawOffset = 0;
557 rawOffset = uprv_timezone() * -U_MILLIS_PER_SECOND;
576 if (default_zone != NULL && rawOffset != default_zone->getRawOffset()
588 default_zone = new SimpleTimeZone(rawOffset, hostStrID);
663 void TimeZone::getOffset(UDate date, UBool local, int32_t& rawOffset,
669 rawOffset = getRawOffset();
671 date += rawOffset; // now in local standard millis
696 ec) - rawOffset;
746 TZEnumeration(int32_t rawOffset) : map(NULL), len(0), pos(0) {
768 z->getRawOffset() == rawOffset) {
    [all...]