Lines Matching defs:count

47         size_t count = strftime(buffer, sizeof(buffer) - 1, "%c", timeptr);
48 EXPECT_TRUE("strftime_0100", count > 0);
75 size_t count = strftime(buffer, sizeof(buffer) - 1, "%c %Z%z", timeptr);
76 EXPECT_TRUE("strftime_0200", count > 0);
102 size_t count = strftime(buffer, sizeof(buffer) - 1, "%k", timeptr);
103 EXPECT_TRUE("strftime_0300", count > 0);
128 size_t count = strftime(buffer, sizeof(buffer) - 1, "%k", timeptr);
129 EXPECT_TRUE("strftime_0400", count > 0);
154 size_t count = strftime(buffer, sizeof(buffer) - 1, "%I", timeptr);
155 EXPECT_TRUE("strftime_0500", count > 0);
180 size_t count = strftime(buffer, sizeof(buffer) - 1, "%P", timeptr);
181 EXPECT_TRUE("strftime_0600", count > 0);
206 size_t count = strftime(buffer, sizeof(buffer) - 1, "%v", timeptr);
207 EXPECT_TRUE("strftime_0700", count > 0);
232 size_t count = strftime(buffer, sizeof(buffer) - 1, "%j", timeptr);
233 EXPECT_TRUE("strftime_0800", count > 0);
258 size_t count = strftime(buffer, sizeof(buffer) - 1, "%l", timeptr);
259 EXPECT_TRUE("strftime_0900", count > 0);
290 size_t count = strftime(buffer, sizeof(buffer) - 1, "%V", timeptr);
291 EXPECT_TRUE("strftime_1000", count > 0);
304 size_t count = strftime(buffer, sizeof(buffer) - 1, "%l", &tm);
305 EXPECT_TRUE("strftime_1100", count > 0);
336 size_t count = strftime(buffer, sizeof(buffer) - 1, "%G", timeptr);
337 EXPECT_TRUE("strftime_1200", count > 0);
368 size_t count = strftime(buffer, sizeof(buffer) - 1, "%G", timeptr);
369 EXPECT_TRUE("strftime_1300", count > 0);
400 size_t count = strftime(buffer, sizeof(buffer) - 1, "%G", timeptr);
401 EXPECT_TRUE("strftime_1400", count > 0);
427 size_t count = strftime(buffer, sizeof(buffer) - 1, "%B", timeptr);
428 EXPECT_TRUE("strftime_1500", count > 0);
455 size_t count = strftime(buffer, sizeof(buffer) - 1, "%B", timeptr);
456 EXPECT_TRUE("strftime_1600", count > 0);
470 size_t count = strftime(buffer, sizeof(buffer) - 1, "%l", &tm);
471 EXPECT_TRUE("strftime_1700", count > 0);
484 size_t count = strftime(buffer, sizeof(buffer) - 1, "%u", &tm);
485 EXPECT_TRUE("strftime_1800", count > 0);
499 size_t count = strftime(buffer, sizeof(buffer) - 1, "%u", &tm);
500 EXPECT_TRUE("strftime_1900", count > 0);
514 size_t count = strftime(buffer, sizeof(buffer) - 1, "%-y", &tm);
515 EXPECT_TRUE("strftime_2000", count > 0);
529 size_t count = strftime(buffer, sizeof(buffer) - 1, "%z", &tm);
530 EXPECT_TRUE("strftime_2100", count == 0);
544 size_t count = strftime(buffer, sizeof(buffer) - 1, "%Z", &tm);
545 EXPECT_TRUE("strftime_2200", count == 0);
558 size_t count = strftime(buffer, sizeof(buffer) - 1, "%E%", &tm);
559 EXPECT_TRUE("strftime_2300", count > 0);
572 size_t count = strftime(buffer, sizeof(buffer) - 1, "%O%", &tm);
573 EXPECT_TRUE("strftime_2400", count > 0);