/prebuilts/go/linux-x86/src/time/ |
zoneinfo_ios.go | 41 localLoc = *UTC
|
zoneinfo_abbrs_windows.go | 110 "UTC": {"GMT", "GMT"}, // Etc/GMT 111 "UTC-11": {"GMT+11", "GMT+11"}, // Etc/GMT+11 113 "UTC-02": {"GMT+2", "GMT+2"}, // Etc/GMT+2 114 "UTC-08": {"GMT+8", "GMT+8"}, // Etc/GMT+8 115 "UTC-09": {"GMT+9", "GMT+9"}, // Etc/GMT+9 116 "UTC+12": {"GMT-12", "GMT-12"}, // Etc/GMT-12
|
time.go | 24 // The zero value of type Time is January 1, year 1, 00:00:00.000000000 UTC. 30 // The methods Local, UTC, and In return a Time with a specific location. 38 // values, which can be achieved through use of the UTC or Local method. 42 // January 1, year 1 00:00:00 UTC. 53 // The nil location means UTC. 54 // All UTC times are represented with loc==nil, never loc==&utcLoc. 77 // For example, 6:00 +0200 CEST and 4:00 UTC are Equal. 155 // January 1, year 1, 00:00:00.000000000 UTC 157 // (1-1-1 00:00:00 UTC), (2) is unlikely enough to arise in practice to 159 // non-negative year even in time zones west of UTC, unlike 1-1- [all...] |
/external/libcap-ng/libcap-ng-0.7/ |
py-compile | 4 scriptversion=2011-06-08.12; # UTC 159 # time-stamp-time-zone: "UTC" 160 # time-stamp-end: "; # UTC"
|
/frameworks/rs/script_api/ |
rs_time.spec | 30 January 1, 1970, Coordinated Universal Time (UTC)). 81 Returns the number of seconds since the Epoch (00:00:00 UTC, January 1, 1970).
|
/libcore/luni/src/test/java/libcore/java/time/format/ |
DateTimeFormatterBuilderTest.java | 57 assertEquals("UTC", 58 formatter.format(ZonedDateTime.now(ZoneId.of("UTC")))); 67 formatter.format(OffsetDateTime.now(ZoneOffset.UTC)); 80 assertEquals(ZoneId.of("UTC"), 81 formatter.parse("UTC").query(TemporalQueries.zoneId())); 86 assertEquals(ZoneId.of("UTC+01:00"), 87 formatter.parse("UTC+01:00").query(TemporalQueries.zoneId()));
|
/libcore/luni/src/test/java/libcore/java/time/zone/ |
ZoneRulesTest.java | 50 LocalDateTime.of(2000, Month.JANUARY, 1, 1, 1).toInstant(ZoneOffset.UTC),
|
/libcore/ojluni/src/test/java/time/tck/java/time/format/ |
TCKZoneIdPrinterParser.java | 88 private static final ZoneOffset OFFSET_UTC = ZoneOffset.UTC; 156 {"UTC", 3, -1, ZoneId.of("UTC")}, 160 {"+00:00", 6, -1, ZoneOffset.UTC}, 161 {"UTC+00:00", 9, -1, ZoneId.of("UTC")}, 164 {"-00:00", 6, -1, ZoneOffset.UTC}, 165 {"UTC-00:00", 9, -1, ZoneId.of("UTC")}, 170 {"UTC+01:30", 9, -1, ZoneId.of("UTC+01:30")} [all...] |
TCKSignStyle.java | 123 formatter = formatter.withZone(ZoneOffset.UTC);
|
TCKInstantPrinterParser.java | 253 Instant expected = OffsetDateTime.of(1970, 2, 4, 0, 0, 0, 0, ZoneOffset.UTC).toInstant(); 265 Instant expected = OffsetDateTime.of(1970, 2, 3, 23, 59, 59, 123456789, ZoneOffset.UTC).toInstant();
|
/prebuilts/go/darwin-x86/src/os/ |
example_test.go | 31 mtime := time.Date(2006, time.February, 1, 3, 4, 5, 0, time.UTC) 32 atime := time.Date(2007, time.March, 2, 4, 5, 6, 0, time.UTC)
|
/prebuilts/go/linux-x86/src/os/ |
example_test.go | 31 mtime := time.Date(2006, time.February, 1, 3, 4, 5, 0, time.UTC) 32 atime := time.Date(2007, time.March, 2, 4, 5, 6, 0, time.UTC)
|
/libcore/luni/src/test/java/libcore/java/util/ |
SimpleTimeZoneTest.java | 41 private static final TimeZone UTC = TimeZone.getTimeZone("UTC"); 270 String actualUtcEntryTime = formatTime(UTC, simpleTransitions[0]); 272 String actualUtcExitTime = formatTime(UTC, simpleTransitions[1]);
|
/prebuilts/go/darwin-x86/src/time/ |
zoneinfo_abbrs_windows.go | 110 "UTC": {"GMT", "GMT"}, // Etc/GMT 111 "UTC-11": {"GMT+11", "GMT+11"}, // Etc/GMT+11 113 "UTC-02": {"GMT+2", "GMT+2"}, // Etc/GMT+2 114 "UTC-08": {"GMT+8", "GMT+8"}, // Etc/GMT+8 115 "UTC-09": {"GMT+9", "GMT+9"}, // Etc/GMT+9 116 "UTC+12": {"GMT-12", "GMT-12"}, // Etc/GMT-12
|
time.go | 24 // The zero value of type Time is January 1, year 1, 00:00:00.000000000 UTC. 30 // The methods Local, UTC, and In return a Time with a specific location. 38 // values, which can be achieved through use of the UTC or Local method. 42 // January 1, year 1 00:00:00 UTC. 53 // The nil location means UTC. 54 // All UTC times are represented with loc==nil, never loc==&utcLoc. 77 // For example, 6:00 +0200 CEST and 4:00 UTC are Equal. 155 // January 1, year 1, 00:00:00.000000000 UTC 157 // (1-1-1 00:00:00 UTC), (2) is unlikely enough to arise in practice to 159 // non-negative year even in time zones west of UTC, unlike 1-1- [all...] |
/libcore/ojluni/src/main/java/java/time/zone/ |
ZoneOffsetTransitionRule.java | 438 * the wall offset or UTC. 581 * <li>Relative to UTC</li> 587 /** The local date-time is expressed in terms of the UTC offset. */ 588 UTC, 601 * The UTC type uses the UTC offset. 613 case UTC: { 614 int difference = wallOffset.getTotalSeconds() - ZoneOffset.UTC.getTotalSeconds();
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/ |
CalendarTestFmwk.java | 54 public final static SimpleTimeZone UTC = new SimpleTimeZone(0, "GMT"); 78 cal.setTimeZone(UTC); 91 gregFormat.setTimeZone(UTC); 93 GregorianCalendar pureGreg = new GregorianCalendar(UTC);
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
CalendarTestFmwk.java | 53 public final static SimpleTimeZone UTC = new SimpleTimeZone(0, "GMT"); 77 cal.setTimeZone(UTC); 90 gregFormat.setTimeZone(UTC); 92 GregorianCalendar pureGreg = new GregorianCalendar(UTC);
|
/libcore/luni/src/test/java/libcore/java/time/chrono/ |
IsoChronologyTest.java | 114 IsoChronology.INSTANCE.zonedDateTime(null, ZoneOffset.UTC);
|
/libcore/ojluni/src/test/java/time/tck/java/time/zone/serial/ |
TCKZoneOffsetTransitionRuleSerialization.java | 99 Month.MARCH, 20, DayOfWeek.FRIDAY, LocalTime.MIDNIGHT, true, TimeDefinition.UTC,
|
/build/soong/third_party/zip/ |
struct.go | 163 time.UTC, 171 t = t.In(time.UTC) 177 // ModTime returns the modification time in UTC. 183 // SetModTime sets the ModifiedTime and ModifiedDate fields to the given time in UTC.
|
/libcore/luni/src/test/java/libcore/java/time/ |
DurationTest.java | 84 { ZonedDateTime.of(LocalDateTime.MAX, ZoneOffset.UTC ), Duration.ofNanos(1) }, 112 { ZonedDateTime.of(LocalDateTime.MIN, ZoneOffset.UTC ), Duration.ofNanos(1) },
|
/libcore/ojluni/src/main/java/java/time/ |
ZoneId.java | 96 * <li>Fixed offsets - a fully resolved offset from UTC/Greenwich, that uses 99 * the offset from UTC/Greenwich apply 123 * such as 'GMT+2' or 'UTC+01:00'. 124 * The recognised prefixes are 'UTC', 'GMT' and 'UT'. 129 * two or more characters, and not start with 'UTC', 'GMT', 'UT' '+' or '-'. 147 * However, the airport of Utrecht has the code 'UTC', which is obviously a conflict. 149 * Thus if IATA data were defined, Utrecht airport would be 'IATA~UTC'. 154 * offset from UTC/Greenwich. 323 * <li>If the zone ID equals 'Z', the result is {@code ZoneOffset.UTC}. 328 * <li>If the zone ID equals 'GMT', 'UTC' or 'UT' then the result is a {@code ZoneId [all...] |
/libcore/ojluni/src/main/java/java/util/ |
TimeZone.java | 175 private static final TimeZone UTC = new SimpleTimeZone(0, "UTC"); 179 * daylight savings. This is the offset to add to UTC to get local time. 204 * Returns the offset of this time zone from UTC at the specified 214 * @return the amount of time in milliseconds to add to UTC to get local time. 258 * This is the offset to add to UTC to get local time. 271 * Returns the amount of time in milliseconds to add to UTC to get 283 * @return the amount of raw offset time in milliseconds to add to UTC. 420 * Returns a string representation of an offset from UTC. 427 * @param offsetMillis the offset from UTC [all...] |
/libcore/ojluni/src/test/java/time/tck/java/time/zone/ |
TCKFixedZoneRules.java | 140 assertEquals(test.isValidOffset(LDT, ZoneOffset.UTC), false); 144 assertEquals(test.isValidOffset(null, ZoneOffset.UTC), false);
|