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

1 2 3 4 5

  /external/libcxx/test/libcxx/utilities/time/date.time/
asctime.thread-unsafe.fail.cpp 15 // asctime is not thread-safe.
17 std::asctime(&t);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/time/date.time/
asctime.thread-unsafe.fail.cpp 15 // asctime is not thread-safe.
17 std::asctime(&t);
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/
8-1-buildonly.c 9 char *asctime(const struct tm *);
20 dummyvar = asctime;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/localtime/
1-1.c 27 printf("date: %s", (asctime(localtime((&current_time)))));
  /prebuilts/ndk/r16/sources/cxx-stl/system/include/
ctime 54 using ::asctime;
  /external/fonttools/Lib/fontTools/ttLib/tables/
F_F_T_M_.py 34 value = time.asctime(time.gmtime(max(0, value + mac_epoch_diff)))
36 value = time.asctime(time.gmtime(0))
_h_e_a_d.py 55 value = time.asctime(time.gmtime(max(0, value + mac_epoch_diff)))
57 value = time.asctime(time.gmtime(0))
  /external/ltp/testcases/kernel/fs/lftest/
lftest.c 59 asctime(localtime(&time1)));
86 asctime(localtime(&time2)));
  /external/autotest/client/profilers/powertop/
powertop.py 28 output.write(time.asctime() + '\n')
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/asctime/
1-1.c 8 The asctime() function shall convert the broken-down time in the structure pointed to by timeptr into a string in the form: Sun Sep 16 01:03:52 1973\n\0
50 real = asctime(&time_ptr);
62 perror("asctime did not return the correct value\n");
  /external/v8/tools/
process-heap-prof.py 60 print('DATE "%s"' % time.asctime(time.localtime()))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_time.py 23 == time.asctime(time.localtime(self.t)))
123 time.asctime(time.gmtime(self.t))
124 self.assertRaises(TypeError, time.asctime, 0)
125 self.assertRaises(TypeError, time.asctime, ())
126 # XXX: Posix compiant asctime should refuse to convert
128 # self.assertRaises(ValueError, time.asctime,
132 time.asctime((12345, 1, 1, 0, 0, 0, 0, 1, 0))
  /external/python/cpython2/Lib/test/
test_time.py 23 == time.asctime(time.localtime(self.t)))
123 time.asctime(time.gmtime(self.t))
124 self.assertRaises(TypeError, time.asctime, 0)
125 self.assertRaises(TypeError, time.asctime, ())
126 # XXX: Posix compiant asctime should refuse to convert
128 # self.assertRaises(ValueError, time.asctime,
132 time.asctime((12345, 1, 1, 0, 0, 0, 0, 1, 0))
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_time.py 23 == time.asctime(time.localtime(self.t)))
123 time.asctime(time.gmtime(self.t))
124 self.assertRaises(TypeError, time.asctime, 0)
125 self.assertRaises(TypeError, time.asctime, ())
126 # XXX: Posix compiant asctime should refuse to convert
128 # self.assertRaises(ValueError, time.asctime,
132 time.asctime((12345, 1, 1, 0, 0, 0, 0, 1, 0))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_time.py 23 == time.asctime(time.localtime(self.t)))
123 time.asctime(time.gmtime(self.t))
124 self.assertRaises(TypeError, time.asctime, 0)
125 self.assertRaises(TypeError, time.asctime, ())
126 # XXX: Posix compiant asctime should refuse to convert
128 # self.assertRaises(ValueError, time.asctime,
132 time.asctime((12345, 1, 1, 0, 0, 0, 0, 1, 0))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_time.py 23 == time.asctime(time.localtime(self.t)))
123 time.asctime(time.gmtime(self.t))
124 self.assertRaises(TypeError, time.asctime, 0)
125 self.assertRaises(TypeError, time.asctime, ())
126 # XXX: Posix compiant asctime should refuse to convert
128 # self.assertRaises(ValueError, time.asctime,
132 time.asctime((12345, 1, 1, 0, 0, 0, 0, 1, 0))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_time.py 23 == time.asctime(time.localtime(self.t)))
123 time.asctime(time.gmtime(self.t))
124 self.assertRaises(TypeError, time.asctime, 0)
125 self.assertRaises(TypeError, time.asctime, ())
126 # XXX: Posix compiant asctime should refuse to convert
128 # self.assertRaises(ValueError, time.asctime,
132 time.asctime((12345, 1, 1, 0, 0, 0, 0, 1, 0))
  /bionic/libc/tzcode/
asctime.c 9 ** whereas the output of asctime is supposed to be constant.
125 asctime(register const struct tm *timeptr) function
  /device/linaro/bootloader/edk2/StdLib/Include/
time.h 59 char * asctime (const struct tm *timeptr);
219 /** The asctime function converts the broken-down time in the structure pointed
227 @return The asctime function returns a pointer to the string.
229 char * asctime(const struct tm *timeptr);
232 time in the form of a string. It is equivalent to asctime(localtime(timer))
237 @return The ctime function returns the pointer returned by the asctime
  /external/autotest/client/profilers/catprofile/
catprofile.py 36 output.write(time.asctime() + '\n')
  /external/autotest/tko/
save_query.cgi 16 tm = time.asctime()
  /external/icu/icu4c/source/tools/tzcode/
asctime.c 9 ** whereas the output of asctime is supposed to be constant.
129 asctime(register const struct tm *timeptr) function
  /external/libcxx/test/std/depr/depr.c.headers/
time_h.pass.cpp 33 static_assert((std::is_same<decltype(asctime(&tmv)), char*>::value), "");
  /external/libcxx/test/std/language.support/support.runtime/
ctime.pass.cpp 38 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
  /external/libcxx/test/std/utilities/time/date.time/
ctime.pass.cpp 38 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");

Completed in 437 milliseconds

1 2 3 4 5