HomeSort by relevance Sort by last modified time
    Searched defs:gmt (Results 1 - 25 of 27) sorted by null

1 2

  /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...]
  /external/chromium_org/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...]
  /external/chromium_org/third_party/libxslt/libxslt/
extra.c 178 time_t gmt, lmt; local
233 gmt = mktime(&gmt_tm);
240 local_tm = localtime(&gmt);
246 lmt = gmt - timezone;
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prtime.h 66 * to midnight (00:00:00), January 1, 1970 Greenwich Mean Time (GMT).
67 * (GMT is also known as Coordinated Universal Time, UTC.)
80 * Time zone and daylight saving time corrections applied to GMT to
85 PRInt32 tp_gmt_offset; /* the offset from GMT in seconds */
95 * offsets from the GMT must be saved in the 'tm_params' field so that
96 * all the information is available to reconstruct GMT.
137 * given the current time in GMT. The input argument gmt should
138 * point to a PRExplodedTime that is in GMT, i.e., whose
141 * For any time zone other than GMT, the computation is intended t
222 NSPR_API(PRTimeParameters) PR_LocalTimeParameters(const PRExplodedTime *gmt); variable
225 NSPR_API(PRTimeParameters) PR_GMTParameters(const PRExplodedTime *gmt); variable
231 NSPR_API(PRTimeParameters) PR_USPacificTimeParameters(const PRExplodedTime *gmt); variable
    [all...]
  /external/libxslt/libxslt/
extra.c 178 time_t gmt, lmt; local
233 gmt = mktime(&gmt_tm);
240 local_tm = localtime(&gmt);
246 lmt = gmt - timezone;
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
t_x509.c 389 int gmt=0; local
399 if (v[i-1] == 'Z') gmt=1;
425 mon[M-1],d,h,m,s,f_len,f,y,(gmt)?" GMT":"") <= 0)
437 int gmt=0; local
445 if (v[i-1] == 'Z') gmt=1;
461 mon[M-1],d,h,m,s,y+1900,(gmt)?" GMT":"") <= 0)
  /external/openssl/crypto/asn1/
t_x509.c 389 int gmt=0; local
399 if (v[i-1] == 'Z') gmt=1;
425 mon[M-1],d,h,m,s,f_len,f,y,(gmt)?" GMT":"") <= 0)
437 int gmt=0; local
445 if (v[i-1] == 'Z') gmt=1;
461 mon[M-1],d,h,m,s,y+1900,(gmt)?" GMT":"") <= 0)
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.cc 349 "UT", "GMT", "EST", "EDT", "CST", "CDT", "MST", "MDT", "PST", "PDT",
384 unsigned long gmt, non_gmt = mktime(&tval); local
393 gmt = non_gmt + (zone[0] == '+') ? offset : -offset;
399 gmt = non_gmt + kTimeZoneOffsets[zindex] * 60 * 60;
403 tm *tm_for_timezone = localtime((time_t *)&gmt);
404 *seconds = gmt + tm_for_timezone->tm_gmtoff;
406 *seconds = gmt - timezone;
  /external/chromium_org/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 162 if (fmtOffset.startsWith("GMT"))
392 "Wednesday", "0225", "0002", "0033", "0002", "PM", "0002", "0002", "Pacific Daylight Time", "1997", "Wednesday", "1997", "2450674", "52452513", "GMT-07:00",
2981 TimeZone *gmt = TimeZone::createTimeZone("Etc\/GMT"); local
    [all...]
  /external/chromium_org/third_party/icu/source/tools/tzcode/
zdump.c 929 struct tm gmt; local
953 gmt = *gmtime(&t);
954 offset = delta(&loc, &gmt);
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...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpcommon.cc 349 "UT", "GMT", "EST", "EDT", "CST", "CDT", "MST", "MDT", "PST", "PDT",
384 size_t gmt, non_gmt = mktime(&tval); local
393 gmt = non_gmt + ((zone[0] == '+') ? offset : -offset);
399 gmt = non_gmt + kTimeZoneOffsets[zindex] * 60 * 60;
403 tm *tm_for_timezone = localtime((time_t *)&gmt);
404 *seconds = gmt + tm_for_timezone->tm_gmtoff;
406 *seconds = gmt - timezone;
  /external/icu4c/test/intltest/
dtfmrgts.cpp 479 if (!strFullDate.endsWith(UnicodeString("GMT-05:00")))
480 errln("Fail: Want GMT-05:00");
940 TimeZone *gmt = timeZone->clone(); local
942 gmt->setRawOffset(0);
948 format->setTimeZone(*gmt);
977 delete gmt;
1006 * SimpleDateFormat won't parse "GMT"
1015 UDate d = fmt->parse("01/22/92 04:52:00 GMT", p0);
1018 errln("Fail: failed to parse 'GMT'");
    [all...]
dtfmttst.cpp 292 if (fmtOffset.startsWith("GMT") && fmtOffset.length() != 3)
529 "1997", "GMT-7", "-07", "-07",
533 "1997", "2450674", "52452513", "GMT-07:00", "Pacific Time", "Wednesday", "August", "3rd quarter", "3rd quarter", "Los Angeles Time",
534 "1997", "GMT-07:00", "-0700", "-0700",
3273 TimeZone *gmt = TimeZone::createTimeZone("Etc\/GMT"); local
    [all...]
  /external/icu4c/tools/tzcode/
zdump.c 929 struct tm gmt; local
953 gmt = *gmtime(&t);
954 offset = delta(&loc, &gmt);
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...]
  /bionic/libc/tzcode/
localtime.c 80 static const char gmt[] = "GMT"; variable
125 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt),
284 tzname[0] = tzname[1] = gmt;
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
ssl3con.c 836 PRUint32 gmt = ssl_Time(); local
    [all...]
  /prebuilts/devtools/tools/lib/
ddmlib.jar 
  /prebuilts/misc/common/ddmlib/
ddmlib-prebuilt.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 

Completed in 1026 milliseconds

1 2