HomeSort by relevance Sort by last modified time
    Searched refs:gmt (Results 1 - 20 of 20) sorted by null

  /external/tcpdump/
gmt2local.c 42 * Returns the difference between gmt and local time in seconds.
49 register struct tm *gmt, *loc; local
54 gmt = &sgmt;
55 *gmt = *gmtime(&t);
57 dt = (loc->tm_hour - gmt->tm_hour) * 60 * 60 +
58 (loc->tm_min - gmt->tm_min) * 60;
61 * If the year or julian day is different, we span 00:00 GMT
65 dir = loc->tm_year - gmt->tm_year;
67 dir = loc->tm_yday - gmt->tm_yday;
  /external/chromium/base/third_party/nspr/
prtime.h 77 * to midnight (00:00:00), January 1, 1970 Greenwich Mean Time (GMT).
78 * (GMT is also known as Coordinated Universal Time, UTC.)
91 * Time zone and daylight saving time corrections applied to GMT to
96 PRInt32 tp_gmt_offset; /* the offset from GMT in seconds */
106 * offsets from the GMT must be saved in the 'tm_params' field so that
107 * all the information is available to reconstruct GMT.
148 * given the current time in GMT. The input argument gmt should
149 * point to a PRExplodedTime that is in GMT, i.e., whose
152 * For any time zone other than GMT, the computation is intended t
195 NSPR_API(PRTimeParameters) PR_GMTParameters(const PRExplodedTime *gmt); variable
    [all...]
prtime.cc 140 // Compute |absolute_time| in seconds, correct for gmt and dst
326 /* Get back to GMT */
332 /* Now normalize GMT */
438 PR_GMTParameters(const PRExplodedTime *gmt)
441 #pragma unused (gmt)
463 * GMT: Greenwich Mean Time
485 * (microseconds after "1-Jan-1970 00:00:00 GMT").
492 * 14 Apr 89 03:20 GMT
494 * Fri, 17 Mar 89 4:01 GMT
509 * be interpreted relative to the local time zone (PR_FALSE) or GMT (PR_TRUE)
    [all...]
  /external/openssl/crypto/asn1/
t_x509.c 354 int gmt=0; local
364 if (v[i-1] == 'Z') gmt=1;
390 mon[M-1],d,h,m,s,f_len,f,y,(gmt)?" GMT":"") <= 0)
402 int gmt=0; local
410 if (v[i-1] == 'Z') gmt=1;
426 mon[M-1],d,h,m,s,y+1900,(gmt)?" GMT":"") <= 0)
  /libcore/luni/src/test/java/com/google/coretests/
XmlReportPrinter.java 127 TimeZone gmt = TimeZone.getTimeZone("GMT"); local
128 dateFormat.setTimeZone(gmt);
  /packages/apps/Calendar/src/com/android/calendar/
TimezoneAdapter.java 61 /** The actual offset of this timezone from GMT in milliseconds */
65 * A one-line representation of this timezone, including both GMT offset
66 * and display name, e.g. "(GMT-7:00) Pacific Time"
79 name.append("GMT");
251 TimeZone gmt = TimeZone.getTimeZone("GMT"); local
256 // since TimeZone.getTimeZone actually returns a clone of GMT
259 if (!newTz.equals(gmt)) {
  /bionic/libc/tzcode/
localtime.c 128 static const char gmt[] = "GMT"; variable
177 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt),
333 tzname[0] = tzname[1] = gmt;
    [all...]
  /external/chromium/third_party/icu/source/tools/tzcode/
localtime.c 73 static const char gmt[] = "GMT"; variable
118 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt),
273 tzname[0] = tzname[1] = gmt;
1146 if (tzload(gmt, sp, TRUE) != 0)
1147 (void) tzparse(gmt, sp, TRUE);
1214 (void) strcpy(lclptr->chars, gmt);
    [all...]
zdump.c 929 struct tm gmt; local
953 gmt = *gmtime(&t);
954 offset = delta(&loc, &gmt);
  /external/icu4c/tools/tzcode/
localtime.c 73 static const char gmt[] = "GMT"; variable
118 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt),
273 tzname[0] = tzname[1] = gmt;
1146 if (tzload(gmt, sp, TRUE) != 0)
1147 (void) tzparse(gmt, sp, TRUE);
1214 (void) strcpy(lclptr->chars, gmt);
    [all...]
zdump.c 929 struct tm gmt; local
953 gmt = *gmtime(&t);
954 offset = delta(&loc, &gmt);
  /external/chromium/third_party/icu/source/test/intltest/
dtfmrgts.cpp 475 if (!strFullDate.endsWith(UnicodeString("GMT-05:00")))
476 errln("Fail: Want GMT-05:00");
936 TimeZone *gmt = timeZone->clone(); local
938 gmt->setRawOffset(0);
944 format->setTimeZone(*gmt);
973 delete gmt;
1002 * SimpleDateFormat won't parse "GMT"
1011 UDate d = fmt->parse("01/22/92 04:52:00 GMT", p0);
1014 errln("Fail: failed to parse 'GMT'");
    [all...]
dtfmttst.cpp 160 if (fmtOffset.startsWith("GMT"))
390 "Wednesday", "0225", "0002", "0033", "0002", "PM", "0002", "0002", "Pacific Daylight Time", "1997", "Wednesday", "1997", "2450674", "52452513", "GMT-07:00",
2917 TimeZone *gmt = TimeZone::createTimeZone("Etc\/GMT"); local
    [all...]
  /external/icu4c/test/intltest/
dtfmrgts.cpp 475 if (!strFullDate.endsWith(UnicodeString("GMT-05:00")))
476 errln("Fail: Want GMT-05:00");
936 TimeZone *gmt = timeZone->clone(); local
938 gmt->setRawOffset(0);
944 format->setTimeZone(*gmt);
973 delete gmt;
1002 * SimpleDateFormat won't parse "GMT"
1011 UDate d = fmt->parse("01/22/92 04:52:00 GMT", p0);
1014 errln("Fail: failed to parse 'GMT'");
    [all...]
dtfmttst.cpp 160 if (fmtOffset.startsWith("GMT"))
390 "Wednesday", "0225", "0002", "0033", "0002", "PM", "0002", "0002", "Pacific Daylight Time", "1997", "Wednesday", "1997", "2450674", "52452513", "GMT-07:00",
2978 TimeZone *gmt = TimeZone::createTimeZone("Etc\/GMT"); local
    [all...]
  /system/core/libcutils/
tztime.c 106 static const char gmt[] = "GMT"; variable
151 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt),
1166 if (tzload(gmt, sp, TRUE) != 0)
1167 (void) tzparse(gmt, sp, TRUE);
    [all...]
  /external/v8/src/
date.js 658 var gmt = ' GMT' + ((sign == 1) ? '+' : '-') +
660 return gmt + ' (' + timezone + ')';
1047 // Return UTC string of the form: Sat, 31 Jan 1970 23:00:00 GMT
1052 + TimeString(t) + ' GMT';
    [all...]
  /external/chromium/net/third_party/nss/ssl/
ssl3con.c 827 PRUint32 gmt = ssl_Time(); local
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilt/common/ant/
ant.jar 

Completed in 442 milliseconds