HomeSort by relevance Sort by last modified time
    Searched refs:timegm (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/base/
os_compat_nacl.h 11 // NaCl has no timegm().
12 extern "C" time_t timegm(struct tm* const t);
os_compat_android.h 18 // Android has no timegm().
19 extern "C" time_t timegm(struct tm* const t);
os_compat_nacl.cc 13 // Native Client has no timegm().
14 time_t timegm(struct tm* tm) { function
os_compat_android.cc 40 // Android has only timegm64() and no timegm().
41 // We replicate the behaviour of timegm() when the result overflows time_t.
42 time_t timegm(struct tm* const t) { function
  /external/chromium_org/media/tools/layout_tests/
test_expectations_history_unittest.py 42 ptime = calendar.timegm((2011, 8, 20, 0, 0, 0, 0, 0, 0))
43 ctime = calendar.timegm((2011, 8, 21, 0, 0, 0, 0, 0, 0))
51 ptime = calendar.timegm((2011, 8, 20, 6, 0, 0, 0, 0, 0))
52 ctime = calendar.timegm((2011, 8, 20, 7, 0, 0, 0, 0, 0))
60 ptime = calendar.timegm((2011, 9, 12, 1, 0, 0, 0, 0, 0))
61 ctime = calendar.timegm((2011, 9, 12, 2, 0, 0, 0, 0, 0))
  /external/bison/lib/
time.in.h 210 # undef timegm
211 # define timegm rpl_timegm
213 _GL_FUNCDECL_RPL (timegm, time_t, (struct tm *__tm) _GL_ARG_NONNULL ((1)));
214 _GL_CXXALIAS_RPL (timegm, time_t, (struct tm *__tm));
217 _GL_FUNCDECL_SYS (timegm, time_t, (struct tm *__tm) _GL_ARG_NONNULL ((1)));
219 _GL_CXXALIAS_SYS (timegm, time_t, (struct tm *__tm));
221 _GL_CXXALIASWARN (timegm);
  /external/bison/darwin-lib/
time.h 522 # undef timegm
523 # define timegm rpl_timegm
525 _GL_FUNCDECL_RPL (timegm, time_t, (struct tm *__tm) _GL_ARG_NONNULL ((1)));
526 _GL_CXXALIAS_RPL (timegm, time_t, (struct tm *__tm));
529 _GL_FUNCDECL_SYS (timegm, time_t, (struct tm *__tm) _GL_ARG_NONNULL ((1)));
531 _GL_CXXALIAS_SYS (timegm, time_t, (struct tm *__tm));
533 _GL_CXXALIASWARN (timegm);
  /external/bison/linux-lib/
time.h 522 # undef timegm
523 # define timegm rpl_timegm
525 _GL_FUNCDECL_RPL (timegm, time_t, (struct tm *__tm) _GL_ARG_NONNULL ((1)));
526 _GL_CXXALIAS_RPL (timegm, time_t, (struct tm *__tm));
529 _GL_FUNCDECL_SYS (timegm, time_t, (struct tm *__tm) _GL_ARG_NONNULL ((1)));
531 _GL_CXXALIAS_SYS (timegm, time_t, (struct tm *__tm));
533 _GL_CXXALIASWARN (timegm);
  /bionic/libc/include/
time.h 118 extern time_t timegm(struct tm* tm);
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
sunos4.h 139 extern time_t timegm(struct tm *);
  /external/chromium/base/
time_posix.cc 32 // standard routines in the case of timegm. We need to use a Mach-specific
109 timestruct.tm_wday = exploded.day_of_week; // mktime/timegm ignore this
110 timestruct.tm_yday = 0; // mktime/timegm ignore this
113 timestruct.tm_gmtoff = 0; // not a POSIX field, so mktime/timegm ignore
114 timestruct.tm_zone = NULL; // not a POSIX field, so mktime/timegm ignore
121 seconds = timegm(&timestruct);
124 // Handle overflow. Clamping the range to what mktime and timegm might
135 // The minimum and maximum representible times that mktime and timegm could
  /system/core/toolbox/
alarm.c 82 t = timegm(&tm);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
time.h 312 extern time_t timegm (struct tm *__tp) __THROW;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
time.h 312 extern time_t timegm (struct tm *__tp) __THROW;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
time.h 312 extern time_t timegm (struct tm *__tp) __THROW;
  /external/chromium_org/base/time/
time_posix.cc 53 return timegm(timestruct);
110 // standard routines in the case of timegm. We need to use a Mach-specific
206 timestruct.tm_wday = exploded.day_of_week; // mktime/timegm ignore this
207 timestruct.tm_yday = 0; // mktime/timegm ignore this
210 timestruct.tm_gmtoff = 0; // not a POSIX field, so mktime/timegm ignore
211 timestruct.tm_zone = NULL; // not a POSIX field, so mktime/timegm ignore
249 // Handle overflow. Clamping the range to what mktime and timegm might
260 // The minimum and maximum representible times that mktime and timegm could
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
_parseaddr.py 158 t = calendar.timegm(data)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
_parseaddr.py 158 t = calendar.timegm(data)
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 312 date = calendar.timegm(email.Utils.parsedate_tz(response_headers['date']))
325 freshness_lifetime = max(0, calendar.timegm(expires) - date)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 312 date = calendar.timegm(email.Utils.parsedate_tz(response_headers['date']))
325 freshness_lifetime = max(0, calendar.timegm(expires) - date)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cookielib.py 38 from calendar import timegm namespace
76 return timegm(tt)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cookielib.py 38 from calendar import timegm namespace
76 return timegm(tt)
    [all...]
  /external/chromium/base/third_party/nspr/
prtime.cc 162 time_t absolute_time = timegm(&exp_tm);
164 // If timegm returned -1. Since we don't pass it a time zone, the only
    [all...]
  /external/chromium_org/base/third_party/nspr/
prtime.cc 76 #include "base/os_compat_android.h" // For timegm()
78 #include "base/os_compat_nacl.h" // For timegm()
167 time_t absolute_time = timegm(&exp_tm);
169 // If timegm returned -1. Since we don't pass it a time zone, the only
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
DateMath.cpp 389 #if HAVE(TIMEGM)
390 time_t utcOffset = timegm(&localt) - mktime(&localt);
    [all...]

Completed in 740 milliseconds

1 2