Home
last modified time | relevance | path

Searched refs:daylight (Results 1 – 25 of 72) sorted by relevance

123

/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
DTimeZoneNameTest.java97 private String getIcuDisplayName(String tzid, boolean daylight, int style, Locale loc) { in getIcuDisplayName() argument
106 icuName = daylight ? in getIcuDisplayName()
111 icuName = daylight ? in getIcuDisplayName()
120 …private void checkDisplayName(boolean daylight, int style, String tzid, Locale loc, String icunam… in checkDisplayName() argument
123 String name = tz.getDisplayName(daylight, style, loc); in checkDisplayName()
131 + " (daylight=" + daylight + ", style=" + styleStr + ")"); in checkDisplayName()
136 + " (daylight=" + daylight + ", style=" + styleStr + ")"); in checkDisplayName()
143 + " (daylight=" + daylight + ", style=" + styleStr + ")"); in checkDisplayName()
147 name = tz.getDisplayName(daylight, style, icuLoc); in checkDisplayName()
152 + " (daylight=" + daylight + ", style=" + styleStr + ")"); in checkDisplayName()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/util/
DTimeZone.java416 public final String getDisplayName(boolean daylight, int style) { in getDisplayName() argument
417 return getDisplayName(daylight, style, ULocale.getDefault(Category.DISPLAY)); in getDisplayName()
436 public String getDisplayName(boolean daylight, int style, Locale locale) { in getDisplayName() argument
437 return getDisplayName(daylight, style, ULocale.forLocale(locale)); in getDisplayName()
456 public String getDisplayName(boolean daylight, int style, ULocale locale) { in getDisplayName() argument
461 return _getDisplayName(style, daylight, locale); in getDisplayName()
469 private String _getDisplayName(int style, boolean daylight, ULocale locale) { in _getDisplayName() argument
497 if (daylight && timeType.value == TimeType.STANDARD || in _getDisplayName()
498 !daylight && timeType.value == TimeType.DAYLIGHT) { in _getDisplayName()
499 int offset = daylight ? getRawOffset() + getDSTSavings() : getRawOffset(); in _getDisplayName()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DTimeZone.java478 public final String getDisplayName(boolean daylight, int style) { in getDisplayName() argument
479 return getDisplayName(daylight, style, ULocale.getDefault(Category.DISPLAY)); in getDisplayName()
499 public String getDisplayName(boolean daylight, int style, Locale locale) { in getDisplayName() argument
500 return getDisplayName(daylight, style, ULocale.forLocale(locale)); in getDisplayName()
520 public String getDisplayName(boolean daylight, int style, ULocale locale) { in getDisplayName() argument
525 return _getDisplayName(style, daylight, locale); in getDisplayName()
533 private String _getDisplayName(int style, boolean daylight, ULocale locale) { in _getDisplayName() argument
561 if (daylight && timeType.value == TimeType.STANDARD || in _getDisplayName()
562 !daylight && timeType.value == TimeType.DAYLIGHT) { in _getDisplayName()
563 int offset = daylight ? getRawOffset() + getDSTSavings() : getRawOffset(); in _getDisplayName()
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DTimezoneFormatter.java67 public String toString(boolean daylight) { in toString() argument
68 return this == GENERIC ? "generic" : daylight ? "daylight" : "standard"; in toString()
226 boolean daylight = gmtOffset1 != timeZone.getRawOffset(); in getFormattedZone()
227 return getFormattedZone(inputZoneid, location, type, length, daylight, gmtOffset1, metazone, in getFormattedZone()
245 …getFormattedZone(String inputZoneid, Location location, Type type, Length length, boolean daylight, in getFormattedZone() argument
247 …String formatted = getFormattedZoneInternal(inputZoneid, location, type, length, daylight, gmtOffs… in getFormattedZone()
253 …formatted = getFormattedZone(inputZoneid, Location.LOCATION, type, length, daylight, gmtOffset1, m… in getFormattedZone()
259 …return getFormattedZone(inputZoneid, Location.GMT, null, Length.LONG, daylight, gmtOffset1, metazo… in getFormattedZone()
264 boolean daylight, int gmtOffset1, String metazone, boolean noTimezoneChangeWithin184Days) { in getFormattedZoneInternal() argument
318 String formatValue = getLocalizedExplicitTzid(zoneid, type, length, daylight); in getFormattedZoneInternal()
[all …]
DZoneFormats.java25 generic, standard, daylight, genericOrStandard enumConstant
DVerifyZones.java368 boolean daylight = false; in showZones()
371 + "<br>" + s.type.toString(daylight) in showZones()
376 daylight = true; // reset for final 2 items in showZones()
/external/python/cpython2/Lib/
D_strptime.py78 if time.tzname != self.tzname or time.daylight != self.daylight:
171 self.daylight = time.daylight
173 if self.daylight:
306 time.daylight != locale_time.daylight):
431 time.daylight and found_zone not in ("utc", "gmt")):
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/util/
DTimeZoneNameProviderICU.java21 public String getDisplayName(String ID, boolean daylight, int style, Locale locale) { in getDisplayName() argument
40 dispName = daylight ? ldst : lstd; in getDisplayName()
43 dispName = daylight ? sdst : sstd; in getDisplayName()
/external/python/cpython3/Lib/
D_strptime.py77 if time.tzname != self.tzname or time.daylight != self.daylight:
161 self.daylight = time.daylight
163 if self.daylight:
324 time.daylight != locale_time.daylight):
481 time.daylight and found_zone not in ("utc", "gmt")):
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/icuadapter/
DTimeZoneJDK.java68 public String getDisplayName(boolean daylight, int style, Locale locale) { in getDisplayName() argument
69 return fJdkTz.getDisplayName(daylight, style, locale); in getDisplayName()
73 public String getDisplayName(boolean daylight, int style, ULocale locale) { in getDisplayName() argument
74 return fJdkTz.getDisplayName(daylight, style, locale.toLocale()); in getDisplayName()
/external/cldr/tools/java/org/unicode/cldr/test/
DCheckZones.java135 boolean daylight = parts.containsElement("daylight"); in exampleTextForXpath()
137 if (daylight) in exampleTextForXpath()
140 daylight, offset, true); in exampleTextForXpath()
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
DTimeZoneICU.java54 public String getDisplayName(boolean daylight, int style, Locale locale) { in getDisplayName() argument
55 return fIcuTz.getDisplayName(daylight, style, locale); in getDisplayName()
/external/python/cpython2/Lib/test/
Dtest_time.py20 time.daylight
233 self.assertEqual(time.daylight, 0)
243 self.assertEqual(time.daylight, 1)
261 self.assertEqual(time.daylight, 1)
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/
D35-1-buildonly.c18 dummy = daylight; in dummyfcn()
/external/ltp/testcases/open_posix_testsuite/functional/timers/
Dplan.txt53 critical for Y2K testing, set to time before daylight savings (and then
54 after daylight savings). ==> This is probably multiple test cases.
74 critical for Y2K testing, set to time before daylight savings (and then
75 after daylight savings). ==> This is probably multiple test cases. Some
/external/cldr/tools/java/org/unicode/cldr/util/data/
Daustralasia53 # of Queensland chose to keep observing daylight-saving time even after
236 # switch back from daylight savings time when other parts of Australia do
291 …option=com_content&view=article&id=1096:3310-cabinet-approves-change-in-daylight-savings-dates&cat…
301 # http://www.fiji.gov.fj/index.php?option=com_content&view=article&id=2608:daylight-savings&catid=7…
308 # http://www.fiji.gov.fj/index.php?option=com_content&view=article&id=4966:daylight-saving-starts-i…
318 # http://www.fiji.gov.fj/index.php?option=com_content&view=article&id=5017:amendments-to-daylight-s…
321 # The end of daylight saving scheduled initially for the 26th of February 2012
323 # The commencement of daylight saving will remain unchanged and start
328 # today confirmed that Fiji will start daylight savings at 2 am on Sunday 21st
333 # Fiji will start daylight savings on Sunday 27th October, 2013 ...
[all …]
Dnorthamerica57 # See p 46 of David Prerau, Seize the daylight, Thunder's Mouth Press (2005).
74 # daylight when my reason tells me that I am doing nothing of the kind.
87 # Robert Garland, Ten years of daylight saving from the Pittsburgh standpoint
98 # * Public Law 65-106 (1918-03-19) implemented standard and daylight saving
285 # standard and daylight times. See section 9.47 (p 234) of the
420 # the question of whether to approve daylight saving time for the entire state,
468 # daylight-saving to standard time (on Nov. 7, 2010):
527 # PG&E changed power frequency from 60 to 59.5 Hz during daylight hours,
599 # daylight saving time appeared as graffiti on a Juneau airport wall:
637 # own time. I asked about daylight saving; they said it wasn't used. I
[all …]
Dafrica202 # "...Egypt's interim cabinet decided on Wednesday to cancel daylight
206 # Egypt to cancel daylight saving time
215 # after observing the daylight saving time since May.
219 # I received a mail from an airline which says that the daylight
294 ….eg/NewsContent/1/64/100735/Egypt/Politics-/Egypts-government-to-reapply-daylight-saving-time-.aspx
304 # translates into: "With regard to daylight saving time, it is scheduled to
332 # http://english.ahram.org.eg/WriterArticles/NewsContentP/1/128195/Egypt/No-daylight-saving-this-su…
333 # "Egypt's cabinet agreed on Monday not to switch clocks for daylight saving
340 # http://english.ahram.org.eg/NewsContent/1/64/128509/Egypt/Politics-/Sisi-cancels-daylight-saving-…
643 # It seems that Mauritius observed daylight saving time from 1982-10-10 to
[all …]
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestCoverageLevel.txt16 ^//ldml/dates/timeZoneNames/zone\[@type=".*"]/long/daylight ; 30
17 ^//ldml/dates/timeZoneNames/zone\[@type=".*"]/short/daylight ; 30
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
DTimeZoneTest.java219 boolean daylight; field in TimeZoneTest.ZoneDescriptor
224 this.daylight = zone.useDaylightTime(); in ZoneDescriptor()
227 ZoneDescriptor(String id, int offset, boolean daylight) { in ZoneDescriptor() argument
230 this.daylight = daylight; in ZoneDescriptor()
241 daylight == that.daylight; in equals()
252 (daylight ? "Daylight" : "Standard") + "]"; in toString()
260 if (i1.daylight && !i2.daylight) return 1; in compare()
261 if (!i1.daylight && i2.daylight) return -1; in compare()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
DTimeZoneTest.java222 boolean daylight; field in TimeZoneTest.ZoneDescriptor
227 this.daylight = zone.useDaylightTime(); in ZoneDescriptor()
230 ZoneDescriptor(String id, int offset, boolean daylight) { in ZoneDescriptor() argument
233 this.daylight = daylight; in ZoneDescriptor()
244 daylight == that.daylight; in equals()
255 (daylight ? "Daylight" : "Standard") + "]"; in toString()
263 if (i1.daylight && !i2.daylight) return 1; in compare()
264 if (!i1.daylight && i2.daylight) return -1; in compare()
/external/toybox/toys/other/
Dhwclock.c71 tzone.tz_minuteswest = timezone / 60 - 60 * daylight;
/external/python/cpython2/Doc/library/
Dtime.rst124 including the UK). Only use this if ``daylight`` is nonzero.
175 .. data:: daylight
385 and whether ``daylight`` is true. Because of this, it is platform-specific
387 be non-daylight savings timezones).
432 In calls to :func:`mktime`, :attr:`tm_isdst` may be set to 1 when daylight
470 seconds West of UTC), ``altzone`` (DST seconds west of UTC) and ``daylight``
471 (to 0 if this timezone does not have any daylight saving time rules, or to
472 nonzero if there is a time, past, present or future when daylight saving time
/external/cros/system_api/dbus/
Dmtp_file_entry.proto26 // daylight savings time.
/external/cldr/tools/c/genldml/resources/
Droot.txt315 daylight {
316 "{0}<daylight>{1}</daylight>\n"

123