/third_party/libphonenumber/java/geocoder/src/com/google/i18n/phonenumbers/ |
D | PhoneNumberToTimeZonesMapper.java | 162 List<String> timezones = prefixTimeZonesMap.lookupTimeZonesForNumber(number); in getTimeZonesForGeocodableNumber() local 163 return Collections.unmodifiableList(timezones.isEmpty() ? UNKNOWN_TIME_ZONE_LIST in getTimeZonesForGeocodableNumber() 164 : timezones); in getTimeZonesForGeocodableNumber() 175 List<String> timezones = prefixTimeZonesMap.lookupCountryLevelTimeZonesForNumber(number); in getCountryLevelTimeZonesforNumber() local 176 return Collections.unmodifiableList(timezones.isEmpty() ? UNKNOWN_TIME_ZONE_LIST in getCountryLevelTimeZonesforNumber() 177 : timezones); in getCountryLevelTimeZonesforNumber()
|
/third_party/libphonenumber/java/geocoder/test/com/google/i18n/phonenumbers/ |
D | PhoneNumberToTimeZonesMapperTest.java | 66 static List<String> buildListOfTimeZones(String ... timezones) { in buildListOfTimeZones() argument 67 ArrayList<String> timezonesList = new ArrayList<String>(timezones.length); in buildListOfTimeZones() 68 for (String timezone : timezones) { in buildListOfTimeZones()
|
/third_party/libphonenumber/tools/java/java-build/src/com/google/i18n/phonenumbers/buildtools/ |
D | GenerateTimeZonesMapData.java | 82 String timezones = line.substring(indexOfPipe + 1); in parseTextFile() local 83 if (timezones.isEmpty()) { in parseTextFile() 86 if (timeZoneMap.put(prefix, timezones) != null) { in parseTextFile()
|
/third_party/icu/tools/release/c/os-mapping/ |
D | testTimezones.sh | 12 timezones=`locate zoneinfo | fgrep -v evolution-data-server` 13 for tzone in $timezones
|
D | readme.txt | 9 These tests allow you to see how timezones, locales, charsets and other similar stuff are mapped fr…
|
/third_party/libphonenumber/java/internal/prefixmapper/test/com/google/i18n/phonenumbers/prefixmapper/ |
D | PrefixTimeZonesMapTest.java | 74 static List<String> buildListOfTimeZones(String ... timezones) { in buildListOfTimeZones() argument 75 ArrayList<String> timezonesList = new ArrayList<String>(timezones.length); in buildListOfTimeZones() 76 for (String timezone : timezones) { in buildListOfTimeZones()
|
/third_party/libphonenumber/resources/timezones/ |
D | README.md | 20 List<String> timezones = timeZonesMapper.getTimeZonesForNumber(phoneNumber); 34 ant -f java/build.xml build-timezones-data 42 translations](http://cldr.unicode.org/translation/timezones). You can also
|
/third_party/tzdata/ |
D | zone1970.tab | 19 # If multiple timezones overlap a country, each has a row in the 21 # 4. Comments; present if and only if a country has multiple timezones. 28 # most populous timezones first, where that does not contradict (1). 30 # This table is intended as an aid for users, to help them select timezones
|
D | tzselect.8.txt | 60 Table of country codes, latitude and longitude, timezones, and
|
D | zone.tab | 22 # This table is intended as an aid for users, to help them select timezones
|
D | southamerica | 657 # Oficial da União"...) in Brazil there are changes in the timezones, 670 # were proposed, trying to unify the timezones of any given state. This
|
D | asia | 469 # historic timezones from some Taiwan websites. And yes, there are official 473 # I have investigated the timezones around 1970 on the 1712 # Since timezones should be called by country and not capital cities,
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/ |
D | zone1970.tab | 19 # If multiple timezones overlap a country, each has a row in the 21 # 4. Comments; present if and only if a country has multiple timezones. 28 # most populous timezones first, where that does not contradict (1). 30 # This table is intended as an aid for users, to help them select timezones
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/ |
D | TimeZoneTest.java | 468 … String[] timezones = {"America/Chicago", "Europe/Moscow", "Europe/Rome", "Asia/Shanghai", "WET" }; in TestDisplayName2() local 472 for (int i = 0; i < timezones.length; ++i) { in TestDisplayName2() 473 TimeZone tz = TimeZone.getTimeZone(timezones[i]); in TestDisplayName2() 1455 TimeZone timezones[] = { tz1, tz2 }; in TestFebruary() local 1461 for (t = 0; t < timezones.length; ++t) { in TestFebruary() 1462 tz = timezones[t]; in TestFebruary()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/timezone/ |
D | TimeZoneTest.java | 472 … String[] timezones = {"America/Chicago", "Europe/Moscow", "Europe/Rome", "Asia/Shanghai", "WET" }; in TestDisplayName2() local 476 for (int i = 0; i < timezones.length; ++i) { in TestDisplayName2() 477 TimeZone tz = TimeZone.getTimeZone(timezones[i]); in TestDisplayName2() 1483 TimeZone timezones[] = { tz1, tz2 }; in TestFebruary() local 1489 for (t = 0; t < timezones.length; ++t) { in TestFebruary() 1490 tz = timezones[t]; in TestFebruary()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | tzfmttst.cpp | 731 std::unique_ptr<icu::StringEnumeration> timezones( in RunAdoptDefaultThreadSafeTests() local 734 if (!assertTrue(WHERE, (bool)timezones, false, true)) {return;} in RunAdoptDefaultThreadSafeTests() 735 while (const icu::UnicodeString* timezone = timezones->snext(status)) { in RunAdoptDefaultThreadSafeTests()
|
D | tztest.cpp | 1941 TimeZone *timezones[] = { &tz1, &tz2 }; in TestFebruary() local 1946 for (t = 0; t < UPRV_LENGTHOF(timezones); ++t) { in TestFebruary() 1947 tz = timezones[t]; in TestFebruary()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0rc1.rst | 93 Fix timezones in email.utils.formatdate. Patch from Dmitry Shachnev.
|
/third_party/jerryscript/docs/ |
D | 16.MIGRATION-GUIDE.md | 488 The port API of handling timezones has been changed. The previous interface did not 489 allow timezones to be handled correctly, even if the host system was up to the task.
|
/third_party/protobuf/src/google/protobuf/ |
D | timestamp.proto | 110 // able to accept both UTC and other timezones (as indicated by an offset).
|
/third_party/gstreamer/gstplugins_bad/ext/dash/ |
D | gstdashdemux.c | 3685 static const struct Rfc5322TimeZone timezones[] = { in gst_dash_demux_parse_http_head() local 3744 for (i = 0; timezones[i].name && !parsed_tz; ++i) { in gst_dash_demux_parse_http_head() 3745 if (g_ascii_strncasecmp (timezones[i].name, z, in gst_dash_demux_parse_http_head() 3746 strlen (timezones[i].name)) == 0) { in gst_dash_demux_parse_http_head() 3747 tzoffset = timezones[i].tzoffset; in gst_dash_demux_parse_http_head()
|
/third_party/icu/icu4c/packaging/ |
D | PACKAGES | 17 - ICU. This package contains the converters data, the timezones data,
|
/third_party/icu/docs/userguide/datetime/ |
D | index.md | 132 ICU has four classes pertaining to calendars and timezones:
|
/third_party/python/Doc/library/ |
D | datetime.rst | 65 represent simple timezones with fixed offsets from UTC, such as UTC itself or 66 North American EST and EDT timezones. Supporting timezones at deeper levels of 1942 represent timezones with fixed offset from UTC such as UTC itself or North 2066 time, and not need worry about objects in other timezones.
|
D | time.rst | 527 be non-daylight savings timezones).
|