/external/libpcap/lbl/ |
H A D | os-ultrix4.h | 30 struct timezone; 32 int gettimeofday(struct timeval *, struct timezone *);
|
H A D | os-sunos4.h | 104 struct timezone; 106 int gettimeofday(struct timeval *, struct timezone *); 181 char *timezone(int, int);
|
/external/tcpdump/lbl/ |
H A D | os-ultrix4.h | 30 struct timezone; 32 int gettimeofday(struct timeval *, struct timezone *);
|
H A D | os-sunos4.h | 104 struct timezone; 106 int gettimeofday(struct timeval *, struct timezone *); 181 char *timezone(int, int);
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/ |
H A D | TestAll.java | 7 package com.ibm.icu.dev.test.timezone;
|
/external/libvncserver/compat/msvc/sys/ |
H A D | time.h | 26 struct timezone struct 32 static __inline int gettimeofday(struct timeval *tv, struct timezone *tz)
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/ |
H A D | TestAll.java | 8 package android.icu.dev.test.timezone;
|
/external/kernel-headers/original/uapi/linux/ |
H A D | time.h | 20 struct timezone { struct
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
H A D | ShadowTime.java | 30 public void __constructor__(String timezone) { argument 31 if (timezone == null) { 32 throw new NullPointerException("timezone is null!"); 34 time.timezone = timezone; 46 time.timezone = other.timezone; 142 public void clear(String timezone) { argument 143 if (timezone == null) { 144 throw new NullPointerException("timezone i [all...] |
/external/ImageMagick/MagickCore/ |
H A D | nt-base-private.h | 74 struct timezone struct 119 gettimeofday(struct timeval *,struct timezone *),
|
/external/llvm/lib/Support/Unix/ |
H A D | TimeValue.inc | 41 // errors concern the timezone parameter which we're passing in as 0.
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
H A D | TimeTest.java | 25 assertNotNull(t.timezone); 33 assertEquals(t.timezone, t2.timezone); 48 assertEquals(t.timezone, t2.timezone); 81 assertEquals(t.timezone, "UTC"); 89 assertEquals("UTC", t.timezone); 200 time.timezone = "Australia/Sydney"; 223 time.timezone = "Australia/Sydney";
|
/external/toybox/toys/other/ |
H A D | hwclock.c | 19 -t Set the system time based on the current timezone (--systz) 59 struct timezone tzone; 114 tzone.tz_minuteswest = timezone / 60 - 60 * daylight; 118 // Adjust seconds for timezone and daylight saving time 119 // extern long timezone is defined in header sys/time.h 120 tzone.tz_minuteswest = timezone / 60;
|
/external/dhcpcd-6.8.2/dhcpcd-hooks/ |
H A D | Makefile | 7 SCRIPTS+= 10-mtu 10-wpa_supplicant 15-timezone 20-resolv.conf
|
/external/v8/test/mjsunit/regress/ |
H A D | regress-3116.js | 5 function timezone(tz) { function 19 if (timezone("CET")) { 118 if (timezone("BRT")) { 217 if (timezone("PST")) {
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
H A D | message_types.py | 91 timezone = util.TimeZoneOffset(message.time_zone_offset) 93 tz=timezone)
|
/external/autotest/tko/ |
H A D | utils_unittest.py | 13 timezone = datetime.timedelta(seconds=time.timezone) 14 utc_date = date + timezone
|
/external/icu/icu4c/source/tools/tzcode/ |
H A D | icuzdump.cpp | 16 * This tool write out timezone transitions for ICU timezone. This tool 17 * is used as a part of tzdata update process to check if ICU timezone 29 #include "unicode/timezone.h" 116 timezone = tz; 136 timezone->getOffset(t, FALSE, rawOffset, dstOffset, status); 141 timezone->getOffset(newt, FALSE, newRawOffset, newDstOffset, status); 157 timezone->getOffset(medt, FALSE, medRawOffset, medDstOffset, status); 191 GregorianCalendar* gcal = new GregorianCalendar(timezone, Locale::getEnglish(), status); 199 TimeZone* timezone; member in class:ICUZDump [all...] |
/external/libnfc-nci/src/include/ |
H A D | buildcfg.h | 96 short timezone; member in struct:_timeb
|
/external/strace/tests/ |
H A D | xettimeofday.c | 40 struct timezone tz;
|
/external/chromium-trace/catapult/third_party/flot/ |
H A D | jquery.flot.time.js | 15 timezone: null, // "browser" for local to the client or timezone for timezone-js 143 // desired timezone 146 if (opts.timezone == "browser") { 148 } else if (!opts.timezone || opts.timezone == "utc") { 152 // timezone-js is fickle, so be sure to set the time zone before 154 d.setTimezone(opts.timezone);
|
H A D | jquery.flot.time.min.js | 7 (function($){var options={xaxis:{timezone:null,timeformat:null,twelveHourClock:false,monthNames:null}};function floorInBase(n,base){return base*Math.floor(n/base)}function formatDate(d,fmt,monthNames,dayNames){if(typeof d.strftime=="function"){return d.strftime(fmt)}var leftPad=function(n,pad){n=""+n;pad=""+(pad==null?"0":pad);return n.length==1?pad+n:n};var r=[];var escape=false;var hours=d.getHours();var isAM=hours<12;if(monthNames==null){monthNames=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}if(dayNames==null){dayNames=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]}var hours12;if(hours>12){hours12=hours-12}else if(hours==0){hours12=12}else{hours12=hours}for(var i=0;i<fmt.length;++i){var c=fmt.charAt(i);if(escape){switch(c){case"a":c=""+dayNames[d.getDay()];break;case"b":c=""+monthNames[d.getMonth()];break;case"d":c=leftPad(d.getDate());break;case"e":c=leftPad(d.getDate()," ");break;case"h":case"H":c=leftPad(hours);break;case"I":c=leftPad(hours12);break;case"l":c=leftPad(hours12," ");break;case"m":c=leftPad(d.getMonth()+1);break;case"M":c=leftPad(d.getMinutes());break;case"q":c=""+(Math.floor(d.getMonth()/3)+1);break;case"S":c=leftPad(d.getSeconds());break;case"y":c=leftPad(d.getFullYear()%100);break;case"Y":c=""+d.getFullYear();break;case"p":c=isAM?""+"am":""+"pm";break;case"P":c=isAM?""+"AM":""+"PM";break;case"w":c=""+d.getDay();break}r.push(c);escape=false}else{if(c=="%"){escape=true}else{r.push(c)}}}return r.join("")}function makeUtcWrapper(d){function addProxyMethod(sourceObj,sourceMethod,targetObj,targetMethod){sourceObj[sourceMethod]=function(){return targetObj[targetMethod].apply(targetObj,arguments)}}var utc={date:d};if(d.strftime!=undefined){addProxyMethod(utc,"strftime",d,"strftime")}addProxyMethod(utc,"getTime",d,"getTime");addProxyMethod(utc,"setTime",d,"setTime");var props=["Date","Day","FullYear","Hours","Milliseconds","Minutes","Month","Seconds"];for(var p=0;p<props.length;p++){addProxyMethod(utc,"get"+props[p],d,"getUTC"+props[p]);addProxyMethod(utc,"set"+props[p],d,"setUTC"+props[p])}return utc}function dateGenerator(ts,opts){if(opts.timezone=="browser"){return new Date(ts)}else if(!opts.timezone||opts.timezone=="utc"){return makeUtcWrapper(new Date(ts))}else if(typeof timezoneJS!="undefined"&&typeof timezoneJS.Date!="undefined"){var d=new timezoneJS.Date;d.setTimezone(opts.timezone);d.setTime(ts);return d}else{return makeUtcWrapper(new Date(ts))}}var timeUnitSize={second:1e3,min (…)
|
/external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/ |
H A D | i18n.py | 43 #: The application default timezone according to the Olson 52 #: A function that receives (store, request) and returns a timezone 106 #: Default timezone code. 112 #: A callable that returns the timezone for a request. 154 """Sets the function that defines the timezone for a request. 157 A callable that receives (store, request) and returns the timezone 230 #: The current timezone code. 231 timezone = None variable in class:I18n 254 def set_timezone(self, timezone): 255 """Sets the timezone cod [all...] |
/external/libphonenumber/geocoder/test/com/google/i18n/phonenumbers/ |
H A D | PhoneNumberToTimeZonesMapperTest.java | 68 for (String timezone : timezones) { 69 timezonesList.add(timezone);
|
/external/webrtc/webrtc/system_wrappers/source/ |
H A D | event_timer_posix.cc | 85 struct timezone time_zone; 182 struct timezone time_zone;
|