Home
last modified time | relevance | path

Searched refs:timezone (Results 1 – 25 of 218) sorted by relevance

123456789

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowTime.java30 public void __constructor__(String timezone) { in __constructor__() argument
31 if (timezone == null) { in __constructor__()
34 time.timezone = timezone; in __constructor__()
46 time.timezone = other.timezone; in set()
142 public void clear(String timezone) { in clear() argument
143 if (timezone == null) { in clear()
146 time.timezone = timezone; in clear()
195 tz = TimeZone.getTimeZone(time.timezone); in parse()
201 time.timezone = tz.getID(); in parse()
217 strftime.setTimeZone(TimeZone.getTimeZone(time.timezone)); in format()
[all …]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DTimeTest.java25 assertNotNull(t.timezone); in shouldHaveNoArgsConstructor()
33 assertEquals(t.timezone, t2.timezone); in shouldHaveCopyConstructor()
48 assertEquals(t.timezone, t2.timezone); in shouldHaveSetTime()
81 assertEquals(t.timezone, "UTC"); in shouldHaveTimeZoneConstructor()
89 assertEquals("UTC", t.timezone); in shouldClear()
200 time.timezone = "Australia/Sydney"; in testGetJulianDay()
223 time.timezone = "Australia/Sydney"; in testSetJulianDay()
/external/dhcpcd-6.8.2/dhcpcd-hooks/
D15-timezone1 # Configure timezone
24 syslog warning "timezone directory not found"
30 syslog warning "no timezone definition for $new_tzdb_timezone"
35 syslog info "timezone changed to $new_tzdb_timezone"
/external/iptables/extensions/
Dlibxt_time.man38 Use the kernel timezone instead of UTC to determine whether a packet meets the
43 time source has no timezone information, such as the x86 CMOS RTC, UTC will be
45 correct system time and timezone to the kernel once it has the information.
47 Local time is a feature on top of the (timezone independent) system time. Each
49 variable. The kernel also has its own timezone offset variable. The TZ
54 kernel's timezone offset variable is used when it has to convert between
58 The caveat with the kernel timezone is that Linux distributions may ignore to
59 set the kernel timezone, and instead only set the system time. Even if a
60 particular distribution does set the timezone at boot, it is usually does not
61 keep the kernel timezone offset - which is what changes on DST - up to date.
[all …]
/external/libpcap/lbl/
Dos-ultrix4.h30 struct timezone;
32 int gettimeofday(struct timeval *, struct timezone *);
Dos-sunos4.h104 struct timezone;
106 int gettimeofday(struct timeval *, struct timezone *);
181 char *timezone(int, int);
/external/tcpdump/lbl/
Dos-ultrix4.h30 struct timezone;
32 int gettimeofday(struct timeval *, struct timezone *);
Dos-sunos4.h104 struct timezone;
106 int gettimeofday(struct timeval *, struct timezone *);
181 char *timezone(int, int);
/external/v8/test/mjsunit/regress/
Dregress-3116.js5 function timezone(tz) { function
19 if (timezone("CET")) {
118 if (timezone("BRT")) {
217 if (timezone("PST")) {
/external/icu/icu4c/source/tools/tzcode/
Dicuzdump.cpp116 timezone = tz; in setTimeZone()
136 timezone->getOffset(t, FALSE, rawOffset, dstOffset, status); in dump()
141 timezone->getOffset(newt, FALSE, newRawOffset, newDstOffset, status); in dump()
157 timezone->getOffset(medt, FALSE, medRawOffset, medDstOffset, status); in dump()
191 GregorianCalendar* gcal = new GregorianCalendar(timezone, Locale::getEnglish(), status); in getCutOverTimes()
199 TimeZone* timezone; member in ICUZDump
/external/libvncserver/compat/msvc/sys/
Dtime.h26 struct timezone struct
32 static __inline int gettimeofday(struct timeval *tv, struct timezone *tz) in gettimeofday() argument
/external/toybox/toys/other/
Dhwclock.c59 struct timezone tzone; in hwclock_main()
114 tzone.tz_minuteswest = timezone / 60 - 60 * daylight; in hwclock_main()
120 tzone.tz_minuteswest = timezone / 60; in hwclock_main()
/external/icu/icu4c/source/data/misc/
DkeyTypeData.txt35 timezone{"tz"}
43 timezone:alias{"/ICUDATA/timezoneTypes/typeAlias/timezone"}
532 timezone:alias{"/ICUDATA/timezoneTypes/typeMap/timezone"}
/external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/
Di18n.py231 timezone = None variable in I18n
254 def set_timezone(self, timezone): argument
260 self.timezone = timezone
261 self.tzinfo = pytz.timezone(timezone)
/external/chromium-trace/catapult/third_party/flot/
Djquery.flot.time.min.js7timezone:null,timeformat:null,twelveHourClock:false,monthNames:null}};function floorInBase(n,base)… property
Djquery.flot.time.js15 timezone: null, // "browser" for local to the client or timezone for timezone-js property
146 if (opts.timezone == "browser") {
148 } else if (!opts.timezone || opts.timezone == "utc") {
154 d.setTimezone(opts.timezone);
DREADME.md101 zones, date.js from [timezone-js][timezone-js] (released under the Apache 2.0
109 [timezone-js]: https://github.com/mde/timezone-js
/external/autotest/tko/
Dutils_unittest.py13 timezone = datetime.timedelta(seconds=time.timezone)
14 utc_date = date + timezone
/external/ImageMagick/MagickCore/
Dnt-base-private.h74 struct timezone struct
119 gettimeofday(struct timeval *,struct timezone *),
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
Dmessage_types.py91 timezone = util.TimeZoneOffset(message.time_zone_offset)
93 tz=timezone)
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/util/
DGlobalizationPreferences.java448 public GlobalizationPreferences setTimeZone(TimeZone timezone) { in setTimeZone() argument
452 this.timezone = (TimeZone) timezone.clone(); // clone for safety; in setTimeZone()
465 if (timezone == null) { in getTimeZone()
468 return timezone.cloneAsThawed(); // clone for safety in getTimeZone()
769 timezone = null; in reset()
1170 private TimeZone timezone; field in GlobalizationPreferences
/external/icu/android_icu4j/src/main/java/android/icu/util/
DGlobalizationPreferences.java429 public GlobalizationPreferences setTimeZone(TimeZone timezone) { in setTimeZone() argument
433 this.timezone = (TimeZone) timezone.clone(); // clone for safety; in setTimeZone()
445 if (timezone == null) { in getTimeZone()
448 return timezone.cloneAsThawed(); // clone for safety in getTimeZone()
739 timezone = null; in reset()
1130 private TimeZone timezone; field in GlobalizationPreferences
/external/libphonenumber/geocoder/test/com/google/i18n/phonenumbers/
DPhoneNumberToTimeZonesMapperTest.java68 for (String timezone : timezones) { in buildListOfTimeZones()
69 timezonesList.add(timezone); in buildListOfTimeZones()
/external/xmlrpcpp/src/
DXmlRpcDispatch.cpp198 ((double) tbuff.timezone * 60)); in getTime()
201 struct timezone tz; in getTime()
/external/webrtc/webrtc/system_wrappers/source/
Devent_timer_posix.cc85 struct timezone time_zone; in Wait()
182 struct timezone time_zone; in Process()

123456789