Home
last modified time | relevance | path

Searched refs:rawOffset (Results 1 - 25 of 97) sorted by relevance

1234

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DTimeZoneRule.java29 private final int rawOffset; field in TimeZoneRule
37 * @param rawOffset The UTC offset of its standard time in milliseconds.
43 public TimeZoneRule(String name, int rawOffset, int dstSavings) { in TimeZoneRule() argument
45 this.rawOffset = rawOffset; in TimeZoneRule()
68 return rawOffset; in getRawOffset()
94 if (rawOffset == other.rawOffset && dstSavings == other.dstSavings) { in isEquivalentTo()
183 buf.append(", stdOffset=" + rawOffset); in toString()
H A DTimeZone.java326 * in time. Upon return, local-millis = GMT-millis + rawOffset +
339 * `rawOffset' to obtain the total offset between local and GMT
815 * @param rawOffset An offset from GMT in milliseconds, ignoring the effect of daylight savings
823 String region, Integer rawOffset) { in getAvailableIDs()
824 return ZoneMeta.getAvailableIDs(zoneType, region, rawOffset); in getAvailableIDs()
832 * @param rawOffset the offset in milliseconds from GMT
839 public static String[] getAvailableIDs(int rawOffset) { in getAvailableIDs() argument
840 Set<String> ids = getAvailableIDs(SystemTimeZoneType.ANY, null, Integer.valueOf(rawOffset)); in getAvailableIDs()
1395 private int rawOffset; field in TimeZone.ConstantZone
1397 private ConstantZone(int rawOffset, Strin argument
822 getAvailableIDs(SystemTimeZoneType zoneType, String region, Integer rawOffset) getAvailableIDs() argument
[all...]
H A DInitialTimeZoneRule.java29 * @param rawOffset The UTC offset of its standard time in milliseconds.
35 public InitialTimeZoneRule(String name, int rawOffset, int dstSavings) { in InitialTimeZoneRule() argument
36 super(name, rawOffset, dstSavings); in InitialTimeZoneRule()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DTimeZoneRule.java30 private final int rawOffset; field in TimeZoneRule
38 * @param rawOffset The UTC offset of its standard time in milliseconds.
42 public TimeZoneRule(String name, int rawOffset, int dstSavings) { in TimeZoneRule() argument
44 this.rawOffset = rawOffset; in TimeZoneRule()
63 return rawOffset; in getRawOffset()
85 if (rawOffset == other.rawOffset && dstSavings == other.dstSavings) { in isEquivalentTo()
163 buf.append(", stdOffset=" + rawOffset); in toString()
H A DTimeZone.java303 * in time. Upon return, local-millis = GMT-millis + rawOffset +
316 * `rawOffset' to obtain the total offset between local and GMT
773 * @param rawOffset An offset from GMT in milliseconds, ignoring the effect of daylight savings
779 String region, Integer rawOffset) { in getAvailableIDs()
780 return ZoneMeta.getAvailableIDs(zoneType, region, rawOffset); in getAvailableIDs()
788 * @param rawOffset the offset in milliseconds from GMT
793 public static String[] getAvailableIDs(int rawOffset) { in getAvailableIDs() argument
794 Set<String> ids = getAvailableIDs(SystemTimeZoneType.ANY, null, Integer.valueOf(rawOffset)); in getAvailableIDs()
1294 private int rawOffset; field in TimeZone.ConstantZone
1296 private ConstantZone(int rawOffset, Strin argument
778 getAvailableIDs(SystemTimeZoneType zoneType, String region, Integer rawOffset) getAvailableIDs() argument
[all...]
H A DInitialTimeZoneRule.java30 * @param rawOffset The UTC offset of its standard time in milliseconds.
34 public InitialTimeZoneRule(String name, int rawOffset, int dstSavings) { in InitialTimeZoneRule() argument
35 super(name, rawOffset, dstSavings); in InitialTimeZoneRule()
/third_party/icu/icu4c/source/test/intltest/
H A Dtzoffloc.cpp80 // Expected offsets by void getOffset(UDate date, UBool local, int32_t& rawOffset, in TestGetOffsetAroundTransition()
83 // int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) with in TestGetOffsetAroundTransition()
102 // UTimeZoneLocalOption duplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) with in TestGetOffsetAroundTransition()
122 int32_t rawOffset, dstOffset; in TestGetOffsetAroundTransition() local
157 -8*HOUR /* rawOffset */, 1*HOUR /* dstSavings */, dtr, in TestGetOffsetAroundTransition()
168 -8*HOUR /* rawOffset */, 0 /* dstSavings */, dtr, in TestGetOffsetAroundTransition()
221 // Test getOffset(UDate date, UBool local, int32_t& rawOffset, in TestGetOffsetAroundTransition()
226 TESTZONES[i]->getOffset(MILLIS[m], true, rawOffset, dstOffset, status); in TestGetOffsetAroundTransition()
229 } else if (rawOffset != OFFSETS2[m][0] || dstOffset != OFFSETS2[m][1]) { in TestGetOffsetAroundTransition()
234 + rawOffset in TestGetOffsetAroundTransition()
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dtzrule.cpp35 TimeZoneRule::TimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings)
36 : UObject(), fName(name), fRawOffset(rawOffset), fDSTSavings(dstSavings) {
98 int32_t rawOffset,
100 : TimeZoneRule(name, rawOffset, dstSavings) {
184 int32_t rawOffset,
189 : TimeZoneRule(name, rawOffset, dstSavings), fDateTimeRule(new DateTimeRule(dateTimeRule)),
194 int32_t rawOffset,
199 : TimeZoneRule(name, rawOffset, dstSavings), fDateTimeRule(dateTimeRule),
403 int32_t rawOffset,
408 : TimeZoneRule(name, rawOffset, dstSaving
[all...]
H A Dsimpletz.cpp78 rawOffset(rawOffsetGMT), in SimpleTimeZone()
163 this->rawOffset = rawOffsetGMT; in construct()
211 rawOffset = right.rawOffset; in operator =()
466 int32_t result = rawOffset; in getOffset()
480 startTimeMode == UTC_TIME ? -rawOffset : 0, in getOffset()
495 (endTimeMode == UTC_TIME ? -rawOffset : 0), in getOffset()
673 return rawOffset; in getRawOffset()
681 rawOffset = offsetMillis; in setRawOffset()
752 return rawOffset in hasSameRules()
[all...]
H A Drbtz.cpp387 int32_t rawOffset, dstOffset; in getOffset() local
389 getOffsetInternal(time, true, kDaylight, kStandard, rawOffset, dstOffset, status); in getOffset()
393 return (rawOffset + dstOffset); in getOffset()
397 RuleBasedTimeZone::getOffset(UDate date, UBool local, int32_t& rawOffset, in getOffset() argument
399 getOffsetInternal(date, local, kFormer, kLatter, rawOffset, dstOffset, status); in getOffset()
404 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const { in getOffsetFromLocal()
405 getOffsetInternal(date, true, nonExistingTimeOpt, duplicatedTimeOpt, rawOffset, dstOffset, status); in getOffsetFromLocal()
415 int32_t& rawOffset, int32_t& dstOffset, in getOffsetInternal()
417 rawOffset = 0; in getOffsetInternal()
465 rawOffset in getOffsetInternal()
402 getOffsetFromLocal(UDate date, UTimeZoneLocalOption nonExistingTimeOpt, UTimeZoneLocalOption duplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const getOffsetFromLocal() argument
413 getOffsetInternal(UDate date, UBool local, int32_t NonExistingTimeOpt, int32_t DuplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const getOffsetInternal() argument
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dtzrule.cpp35 TimeZoneRule::TimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings)
36 : UObject(), fName(name), fRawOffset(rawOffset), fDSTSavings(dstSavings) {
98 int32_t rawOffset,
100 : TimeZoneRule(name, rawOffset, dstSavings) {
184 int32_t rawOffset,
189 : TimeZoneRule(name, rawOffset, dstSavings), fDateTimeRule(new DateTimeRule(dateTimeRule)),
194 int32_t rawOffset,
199 : TimeZoneRule(name, rawOffset, dstSavings), fDateTimeRule(dateTimeRule),
403 int32_t rawOffset,
408 : TimeZoneRule(name, rawOffset, dstSaving
[all...]
H A Dsimpletz.cpp78 rawOffset(rawOffsetGMT), in SimpleTimeZone()
163 this->rawOffset = rawOffsetGMT; in construct()
211 rawOffset = right.rawOffset; in operator =()
466 int32_t result = rawOffset; in getOffset()
480 startTimeMode == UTC_TIME ? -rawOffset : 0, in getOffset()
495 (endTimeMode == UTC_TIME ? -rawOffset : 0), in getOffset()
673 return rawOffset; in getRawOffset()
681 rawOffset = offsetMillis; in setRawOffset()
752 return rawOffset in hasSameRules()
[all...]
H A Drbtz.cpp387 int32_t rawOffset, dstOffset; in getOffset() local
389 getOffsetInternal(time, true, kDaylight, kStandard, rawOffset, dstOffset, status); in getOffset()
393 return (rawOffset + dstOffset); in getOffset()
397 RuleBasedTimeZone::getOffset(UDate date, UBool local, int32_t& rawOffset, in getOffset() argument
399 getOffsetInternal(date, local, kFormer, kLatter, rawOffset, dstOffset, status); in getOffset()
404 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const { in getOffsetFromLocal()
405 getOffsetInternal(date, true, nonExistingTimeOpt, duplicatedTimeOpt, rawOffset, dstOffset, status); in getOffsetFromLocal()
415 int32_t& rawOffset, int32_t& dstOffset, in getOffsetInternal()
417 rawOffset = 0; in getOffsetInternal()
465 rawOffset in getOffsetInternal()
402 getOffsetFromLocal(UDate date, UTimeZoneLocalOption nonExistingTimeOpt, UTimeZoneLocalOption duplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const getOffsetFromLocal() argument
413 getOffsetInternal(UDate date, UBool local, int32_t NonExistingTimeOpt, int32_t DuplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const getOffsetInternal() argument
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dtzrule.cpp35 TimeZoneRule::TimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings)
36 : UObject(), fName(name), fRawOffset(rawOffset), fDSTSavings(dstSavings) {
98 int32_t rawOffset,
100 : TimeZoneRule(name, rawOffset, dstSavings) {
184 int32_t rawOffset,
189 : TimeZoneRule(name, rawOffset, dstSavings), fDateTimeRule(new DateTimeRule(dateTimeRule)),
194 int32_t rawOffset,
199 : TimeZoneRule(name, rawOffset, dstSavings), fDateTimeRule(dateTimeRule),
403 int32_t rawOffset,
408 : TimeZoneRule(name, rawOffset, dstSaving
[all...]
H A Dsimpletz.cpp78 rawOffset(rawOffsetGMT), in SimpleTimeZone()
163 this->rawOffset = rawOffsetGMT; in construct()
211 rawOffset = right.rawOffset; in operator =()
466 int32_t result = rawOffset; in getOffset()
480 startTimeMode == UTC_TIME ? -rawOffset : 0, in getOffset()
495 (endTimeMode == UTC_TIME ? -rawOffset : 0), in getOffset()
675 return rawOffset; in getRawOffset()
683 rawOffset = offsetMillis; in setRawOffset()
754 return rawOffset in hasSameRules()
[all...]
H A Drbtz.cpp391 int32_t rawOffset, dstOffset; in getOffset() local
393 getOffsetInternal(time, TRUE, kDaylight, kStandard, rawOffset, dstOffset, status); in getOffset()
397 return (rawOffset + dstOffset); in getOffset()
401 RuleBasedTimeZone::getOffset(UDate date, UBool local, int32_t& rawOffset, in getOffset() argument
403 getOffsetInternal(date, local, kFormer, kLatter, rawOffset, dstOffset, status); in getOffset()
408 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const { in getOffsetFromLocal()
409 getOffsetInternal(date, TRUE, nonExistingTimeOpt, duplicatedTimeOpt, rawOffset, dstOffset, status); in getOffsetFromLocal()
419 int32_t& rawOffset, int32_t& dstOffset, in getOffsetInternal()
421 rawOffset = 0; in getOffsetInternal()
469 rawOffset in getOffsetInternal()
406 getOffsetFromLocal(UDate date, UTimeZoneLocalOption nonExistingTimeOpt, UTimeZoneLocalOption duplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const getOffsetFromLocal() argument
417 getOffsetInternal(UDate date, UBool local, int32_t NonExistingTimeOpt, int32_t DuplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const getOffsetInternal() argument
[all...]
/third_party/icu/icu4c/source/tools/tzcode/
H A Dicuzdump.cpp135 int32_t rawOffset, dstOffset; in dump() local
140 timezone->getOffset(t, false, rawOffset, dstOffset, status); in dump()
147 UBool bSameOffset = (rawOffset + dstOffset) == (newRawOffset + newDstOffset); in dump()
163 bSameOffset = (rawOffset + dstOffset) == (medRawOffset + medDstOffset); in dump()
174 formatter->format(lot, rawOffset + dstOffset, (dstOffset == 0 ? false : true), str); in dump()
185 rawOffset = newRawOffset; in dump()
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
H A Dicuzdump.cpp135 int32_t rawOffset, dstOffset; in dump() local
140 timezone->getOffset(t, false, rawOffset, dstOffset, status); in dump()
147 UBool bSameOffset = (rawOffset + dstOffset) == (newRawOffset + newDstOffset); in dump()
163 bSameOffset = (rawOffset + dstOffset) == (medRawOffset + medDstOffset); in dump()
174 formatter->format(lot, rawOffset + dstOffset, (dstOffset == 0 ? false : true), str); in dump()
185 rawOffset = newRawOffset; in dump()
/third_party/icu/icu4c/source/i18n/unicode/
H A Dtimezone.h188 * @param rawOffset An offset from GMT in milliseconds, ignoring
199 const int32_t* rawOffset,
236 * @param rawOffset an offset from GMT in milliseconds, ignoring
241 static StringEnumeration* U_EXPORT2 createEnumeration(int32_t rawOffset);
256 * @param rawOffset an offset from GMT in milliseconds, ignoring
262 static StringEnumeration* U_EXPORT2 createEnumerationForRawOffset(int32_t rawOffset, UErrorCode& status);
576 * in time. Upon return, local-millis = GMT-millis + rawOffset +
586 * @param rawOffset output parameter to receive the raw offset, that
589 * that is, the offset to be added to `rawOffset' to obtain the
597 virtual void getOffset(UDate date, UBool local, int32_t& rawOffset,
[all...]
H A Dtzrule.h169 * @param rawOffset The UTC offset of its standard time in milliseconds.
174 TimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings);
208 * @param rawOffset The UTC offset of its standard time in milliseconds.
213 InitialTimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings);
380 * @param rawOffset The GMT offset of its standard time in milliseconds.
390 AnnualTimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings,
399 * @param rawOffset The GMT offset of its standard time in milliseconds.
409 AnnualTimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings,
613 * @param rawOffset The UTC offset of its standard time in milliseconds.
625 TimeArrayTimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_
[all...]
H A Drbtz.h181 * in time. Upon return, local-millis = GMT-millis + rawOffset +
191 * @param rawOffset output parameter to receive the raw offset, that
194 * that is, the offset to be added to `rawOffset' to obtain the
201 virtual void getOffset(UDate date, UBool local, int32_t& rawOffset,
313 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const override;
328 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& ec) const;
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dtimezone.h188 * @param rawOffset An offset from GMT in milliseconds, ignoring
199 const int32_t* rawOffset,
236 * @param rawOffset an offset from GMT in milliseconds, ignoring
241 static StringEnumeration* U_EXPORT2 createEnumeration(int32_t rawOffset);
256 * @param rawOffset an offset from GMT in milliseconds, ignoring
262 static StringEnumeration* U_EXPORT2 createEnumerationForRawOffset(int32_t rawOffset, UErrorCode& status);
607 * in time. Upon return, local-millis = GMT-millis + rawOffset +
617 * @param rawOffset output parameter to receive the raw offset, that
620 * that is, the offset to be added to `rawOffset' to obtain the
628 virtual void getOffset(UDate date, UBool local, int32_t& rawOffset,
[all...]
H A Dtzrule.h169 * @param rawOffset The UTC offset of its standard time in milliseconds.
174 TimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings);
208 * @param rawOffset The UTC offset of its standard time in milliseconds.
213 InitialTimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings);
380 * @param rawOffset The GMT offset of its standard time in milliseconds.
390 AnnualTimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings,
399 * @param rawOffset The GMT offset of its standard time in milliseconds.
409 AnnualTimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings,
613 * @param rawOffset The UTC offset of its standard time in milliseconds.
625 TimeArrayTimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_
[all...]
H A Drbtz.h181 * in time. Upon return, local-millis = GMT-millis + rawOffset +
191 * @param rawOffset output parameter to receive the raw offset, that
194 * that is, the offset to be added to `rawOffset' to obtain the
201 virtual void getOffset(UDate date, UBool local, int32_t& rawOffset,
313 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const override;
328 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& ec) const;
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dtzrule.h169 * @param rawOffset The UTC offset of its standard time in milliseconds.
174 TimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings);
208 * @param rawOffset The UTC offset of its standard time in milliseconds.
213 InitialTimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings);
394 * @param rawOffset The GMT offset of its standard time in milliseconds.
404 AnnualTimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings,
413 * @param rawOffset The GMT offset of its standard time in milliseconds.
423 AnnualTimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings,
627 * @param rawOffset The UTC offset of its standard time in milliseconds.
639 TimeArrayTimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_
[all...]

Completed in 23 milliseconds

1234