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

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/asan/TestCases/
time_interceptor.cc 13 time_t *tm = (time_t*)malloc(sizeof(time_t)); local
14 free(tm);
15 time_t t = time(tm);
  /external/compiler-rt/test/msan/
mktime.cc 10 struct tm tm; local
11 tm.tm_year = 2014;
12 tm.tm_mon = 3;
13 tm.tm_mday = 28;
15 tm.tm_hour = 13;
17 tm.tm_min = 4;
18 tm.tm_sec = 42;
19 tm.tm_isdst = -1;
20 time_t t = mktime(&tm);
    [all...]
  /external/toybox/toys/posix/
who.c 37 struct tm *tm = localtime(&t); local
39 strftime(toybuf, sizeof(toybuf), "%F %H:%M", tm);
  /external/libcxx/test/std/utilities/time/date.time/
ctime.pass.cpp 38 std::tm tm = {}; local
43 ((void)tm); // Prevent unused warning
52 static_assert((std::is_same<decltype(std::mktime(&tm)), std::time_t>::value), "");
58 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
60 static_assert((std::is_same<decltype(std::gmtime(&t)), std::tm*>::value), "");
61 static_assert((std::is_same<decltype(std::localtime(&t)), std::tm*>::value), "");
63 static_assert((std::is_same<decltype(std::strftime(str,s,"",&tm)), std::size_t>::value), "");
  /external/u-boot/board/ge/common/
ge_common.c 13 struct rtc_time tm; local
25 ret = rtc_get(&tm);
33 if (tm.tm_year > 2037) {
34 tm.tm_sec = 0;
35 tm.tm_min = 0;
36 tm.tm_hour = 0;
37 tm.tm_mday = 1;
38 tm.tm_wday = 2;
39 tm.tm_mon = 1;
40 tm.tm_year = 2036
    [all...]
  /external/v8/src/base/platform/
platform-posix-time.cc 15 struct tm tm; local
16 struct tm* t = localtime_r(&tv, &tm);
25 struct tm tm; local
26 struct tm* t = localtime_r(&tv, &tm);
  /external/webrtc/webrtc/voice_engine/
transmit_mixer_unittest.cc 31 TransmitMixer* tm = NULL; local
32 ASSERT_EQ(0, TransmitMixer::Create(tm, 0));
33 ASSERT_TRUE(tm != NULL);
35 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(NULL,
37 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(&callback,
39 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(&callback,
41 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(&callback,
43 EXPECT_EQ(0, tm->RegisterExternalMediaProcessing(&callback,
45 EXPECT_EQ(0, tm->RegisterExternalMediaProcessing(&callback,
47 EXPECT_EQ(-1, tm->DeRegisterExternalMediaProcessing(kPlaybackPerChannel))
    [all...]
  /external/libcxx/test/std/depr/depr.c.headers/
wchar_h.pass.cpp 40 tm *tm = 0; local
48 ((void)tm); // Prevent unused warning
98 static_assert((std::is_same<decltype(wcsftime(ws, s, L"", tm)), size_t>::value), "");
  /external/libcxx/test/std/language.support/support.runtime/
ctime.pass.cpp 35 std::tm tm = {}; local
43 ((void)tm); // Prevent unused warning
46 static_assert((std::is_same<decltype(std::mktime(&tm)), std::time_t>::value), "");
52 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
54 static_assert((std::is_same<decltype(std::gmtime(&t)), std::tm*>::value), "");
55 static_assert((std::is_same<decltype(std::localtime(&t)), std::tm*>::value), "");
61 static_assert((std::is_same<decltype(std::strftime(c1,s,c2,&tm)), std::size_t>::value), "");
  /external/libcxx/test/std/strings/c.strings/
cwchar.pass.cpp 39 std::tm *tm = 0; local
49 ((void)tm); // Prevent unused warning
100 ASSERT_SAME_TYPE(std::size_t, decltype(std::wcsftime(ws, s, L"", tm)));
  /external/libnetfilter_conntrack/src/expect/
snprintf_xml.c 84 struct tm tm; local
87 if (localtime_r(&t, &tm) == NULL)
93 ret = __snprintf_localtime_xml(buf+offset, len, &tm);
  /external/skia/gm/
subsetshader.cpp 32 SkShader::TileMode tm = SkShader::kRepeat_TileMode; local
34 paint.setShader(SkShader::MakeBitmapShader(leftBitmap, tm, tm, &matrix));
36 paint.setShader(SkShader::MakeBitmapShader(rightBitmap, tm, tm, &matrix));
  /external/skqp/gm/
subsetshader.cpp 30 SkShader::TileMode tm = SkShader::kRepeat_TileMode; local
32 paint.setShader(SkShader::MakeBitmapShader(leftBitmap, tm, tm, &matrix));
34 paint.setShader(SkShader::MakeBitmapShader(rightBitmap, tm, tm, &matrix));
  /cts/tests/tests/telephony2/src/android/telephony2/cts/
PhoneNumberTest.java 65 TelephonyManager tm = context.getSystemService(TelephonyManager.class); local
70 tm.getLine1Number();
76 tm.getLine1Number();
  /external/testng/src/main/java/org/testng/reporters/
VerboseReporter.java 197 ITestNGMethod tm = itr.getMethod(); local
199 sb.append(getMethodDeclaration(tm));
201 Class[] paramTypes = tm.getMethod().getParameterTypes();
226 if (!Utils.isStringEmpty(tm.getDescription())) {
231 sb.append(tm.getDescription());
233 if (tm.getInvocationCount() > 1) {
235 sb.append(tm.getCurrentInvocationCount());
237 sb.append(tm.getInvocationCount());
244 if (!isConfMethod && tm.getInvocationCount() > 1) {
246 sb.append(tm.getSuccessPercentage())
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
ConscryptIntermediateVerificationTest.java 70 for (TrustManager tm : tmf.getTrustManagers()) {
71 if (tm instanceof X509TrustManager) {
72 return (X509TrustManager) tm;
80 X509TrustManager tm = getTrustManager(); local
95 tm.checkServerTrusted(invalidChain, "RSA");
99 tm.checkServerTrusted(validChain, "RSA");
104 tm.checkServerTrusted(invalidChain, "RSA");
  /bionic/libc/include/
time.h 46 struct tm { struct
65 char* asctime(const struct tm* __tm);
66 char* asctime_r(const struct tm* __tm, char* __buf);
69 time_t mktime(struct tm* __tm);
71 struct tm* localtime(const time_t* __t);
72 struct tm* localtime_r(const time_t* __t, struct tm* __tm);
74 struct tm* gmtime(const time_t* __t);
75 struct tm* gmtime_r(const time_t* __t, struct tm* __tm)
    [all...]
  /cts/tests/tests/net/src/android/net/http/cts/
X509TrustManagerExtensionsTest.java 48 X509TrustManager tm = getFirstX509TrustManager(tmf); local
49 X509TrustManagerExtensions xtm = new X509TrustManagerExtensions(tm);
51 for (Certificate cert : tm.getAcceptedIssuers()) {
  /device/generic/goldfish/libqemu/
test_util.c 30 struct timespec tm; local
31 clock_gettime(CLOCK_MONOTONIC, &tm);
32 return (double)tm.tv_sec + (double)tm.tv_nsec/1e9;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ltm.c 33 static const char *const luaT_eventname[] = { /* ORDER TM */
53 const TValue *tm = luaH_getstr(events, ename); local
55 if (ttisnil(tm)) { /* no tag method? */
59 else return tm;
  /external/autotest/tko/
save_query.cgi 16 tm = time.asctime() variable
31 data_to_insert = {'uid':uid, 'time_created':tm,
53 print 'time: %s<br>' % tm
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p8.cpp 12 template<typename T> constexpr T tm(); // expected-warning {{C++14}}
24 int (S::*tm)() const = &S::tm;
34 template<typename T> constexpr T S::tm() { return T(); } // expected-warning {{C++14}} function in class:S
  /external/grpc-grpc/src/core/lib/gpr/
log_linux.cc 71 struct tm tm; local
82 if (!localtime_r(&timer, &tm)) {
85 strftime(time_buffer, sizeof(time_buffer), "%m%d %H:%M:%S", &tm)) {
log_posix.cc 69 struct tm tm; local
78 if (!localtime_r(&timer, &tm)) {
81 strftime(time_buffer, sizeof(time_buffer), "%m%d %H:%M:%S", &tm)) {
log_windows.cc 79 struct tm tm; local
88 if (localtime_s(&tm, &timer)) {
91 strftime(time_buffer, sizeof(time_buffer), "%m%d %H:%M:%S", &tm)) {

Completed in 1925 milliseconds

1 2 3 4 5 6 7 8 91011>>