Searched defs:tm (Results 1 - 7 of 7) sorted by relevance

/ndk/sources/android/support/src/musl-locale/
H A Dstrftime_l.c4 size_t strftime_l(char *restrict s, size_t n, const char *restrict f, const struct tm *restrict tm, locale_t l) argument
6 return strftime(s, n, f, tm);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.runtime/
H A Dctime.pass.cpp28 std::tm tm = {0}; local
31 static_assert((std::is_same<decltype(std::mktime(&tm)), std::time_t>::value), "");
33 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
35 static_assert((std::is_same<decltype(std::gmtime(&t)), std::tm*>::value), "");
36 static_assert((std::is_same<decltype(std::localtime(&t)), std::tm*>::value), "");
39 static_assert((std::is_same<decltype(std::strftime(c1,s,c2,&tm)), std::size_t>::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/date.time/
H A Dtested_elsewhere.pass.cpp26 std::tm tm = {0}; local
30 static_assert((std::is_same<decltype(std::mktime(&tm)), std::time_t>::value), "");
32 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
34 static_assert((std::is_same<decltype(std::gmtime(&t)), std::tm*>::value), "");
35 static_assert((std::is_same<decltype(std::localtime(&t)), std::tm*>::value), "");
36 static_assert((std::is_same<decltype(std::strftime(str,s,"",&tm)), std::size_t>::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
H A Dwchar_h.pass.cpp35 tm *tm = 0; local
95 static_assert((std::is_same<decltype(wcsftime(ws, s, L"", tm)), size_t>::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
H A Dcwchar.pass.cpp35 std::tm *tm = 0; local
100 static_assert((std::is_same<decltype(std::wcsftime(ws, s, L"", tm)), std::size_t>::value), "");
/ndk/sources/cxx-stl/stlport/stlport/stl/config/
H A D_evc.h279 // Struct tm is not defined in evc3 headers
281 struct tm { struct
/ndk/sources/host-tools/make-3.81/
H A Dfile.c850 struct tm *tm = localtime (&t);
852 if (tm)
854 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
855 tm->tm_hour, tm->tm_min, tm->tm_sec);
844 struct tm *tm = localtime (&t); local

Completed in 264 milliseconds