Searched refs:tm_wday (Results 1 - 25 of 65) sorted by relevance

123

/external/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/
H A D2-1-buildonly.c24 week = t.tm_wday;
/external/syslinux/gpxe/src/include/
H A Dtime.h13 int tm_wday; /* day of the week */ member in struct:tm
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/asctime/
H A D1-1.c42 time_ptr.tm_wday = WEEKDAY;
53 wday_name[time_ptr.tm_wday],
/external/icu/icu4c/source/tools/tzcode/
H A Dasctime.c90 if (timeptr->tm_wday < 0 || timeptr->tm_wday >= DAYSPERWEEK)
92 else wn = wday_name[timeptr->tm_wday];
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/gmtime/
H A D1-1.c79 if ((tm_ptr->tm_wday >= 0) && (tm_ptr->tm_wday <= 6)) {
80 printf("wday %02d\n", tm_ptr->tm_wday);
/external/libcxx/test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/
H A Dget_weekday.pass.cpp46 assert(t.tm_wday == 0);
55 assert(t.tm_wday == 0);
64 assert(t.tm_wday == 0);
73 assert(t.tm_wday == 0);
82 assert(t.tm_wday == 0);
91 assert(t.tm_wday == 1);
100 assert(t.tm_wday == 1);
109 assert(t.tm_wday == 0);
118 assert(t.tm_wday == 1);
127 assert(t.tm_wday
[all...]
H A Dget_weekday_wide.pass.cpp46 assert(t.tm_wday == 0);
55 assert(t.tm_wday == 0);
64 assert(t.tm_wday == 0);
73 assert(t.tm_wday == 0);
82 assert(t.tm_wday == 0);
91 assert(t.tm_wday == 1);
100 assert(t.tm_wday == 1);
109 assert(t.tm_wday == 0);
118 assert(t.tm_wday == 1);
127 assert(t.tm_wday
[all...]
/external/libcxx/test/std/localization/locale.categories/category.time/locale.time.get.byname/
H A Dget_weekday.pass.cpp56 assert(t.tm_wday == 1);
66 assert(t.tm_wday == 1);
78 assert(t.tm_wday == 1);
88 assert(t.tm_wday == 1);
H A Dget_weekday_wide.pass.cpp56 assert(t.tm_wday == 1);
66 assert(t.tm_wday == 1);
76 assert(t.tm_wday == 1);
86 assert(t.tm_wday == 1);
H A Dget_one.pass.cpp61 assert(t.tm_wday == 6);
89 assert(t.tm_wday == 6);
124 assert(t.tm_wday == 6);
153 assert(t.tm_wday == 6);
H A Dget_one_wide.pass.cpp61 assert(t.tm_wday == 6);
89 assert(t.tm_wday == 6);
123 assert(t.tm_wday == 6);
154 assert(t.tm_wday == 6);
/external/libchrome/crypto/
H A Dnss_util_unittest.cc25 // PRExplodedTime::tm_wday is a smaller type than Exploded::day_of_week, so
28 exploded.day_of_week = prxtime.tm_wday = 0; // Should be unused.
/external/libcxx/test/std/input.output/iostream.format/ext.manip/
H A Dget_time.pass.cpp55 assert(t.tm_wday == 6);
71 assert(t.tm_wday == 6);
H A Dput_time.pass.cpp66 t.tm_wday = 6;
82 t.tm_wday = 6;
/external/toybox/toys/posix/
H A Dcal.c41 start = (36+tm->tm_wday-tm->tm_mday)%7;
42 else start = tm->tm_wday;
/external/kernel-headers/original/uapi/linux/
H A Drtc.h28 int tm_wday; member in struct:rtc_time
/external/libchrome/base/third_party/nspr/
H A Dprtime.h159 PRInt8 tm_wday; /* calculated day of the week member in struct:PRExplodedTime
207 * - tm_wday and tm_yday: these fields are calculated by NSPR. Users
H A Dprtime.cc240 time->tm_wday--;
241 if (time->tm_wday < 0)
242 time->tm_wday = 6;
258 time->tm_wday++;
259 if (time->tm_wday > 6)
260 time->tm_wday = 0;
357 time->tm_wday = (numDays + 4) % 7;
358 if (time->tm_wday < 0) {
359 time->tm_wday += 7;
1083 result->tm_wday
[all...]
/external/libcxx/test/std/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/
H A Dput1.pass.cpp43 t.tm_wday = 6;
/external/libcxx/test/std/localization/locale.categories/category.time/locale.time.put.byname/
H A Dput1.pass.cpp57 t.tm_wday = 6;
/external/skia/src/core/
H A DSkTime.cpp58 dt->fDayOfWeek = SkToU8(tstruct.tm_wday);
/external/skqp/src/core/
H A DSkTime.cpp58 dt->fDayOfWeek = SkToU8(tstruct.tm_wday);
/external/strace/
H A Drtc.c49 tprintf("tm_wday=%d, tm_yday=%d, tm_isdst=%d}",
50 rt->tm_wday, rt->tm_yday, rt->tm_isdst);
/external/python/cpython2/Modules/
H A Dtimemodule.c225 {"tm_wday", "day of week, range [0, 6], Monday is 0"},
262 SET(6, (p->tm_wday + 6) % 7); /* Want Monday == 0 */
327 tm_sec, tm_wday, tm_yday, tm_isdst)\n\
343 tm_sec,tm_wday,tm_yday,tm_isdst)\n\
361 &p->tm_wday,
386 p->tm_wday = (p->tm_wday + 1) % 7;
429 - tm_wday: [0, 6] (1)
461 /* tm_wday does not need checking of its upper-bound since taking
463 if (buf.tm_wday <
[all...]
/external/pdfium/core/fxcrt/
H A Dfx_system.cpp234 timeptr->tm_sec > 60 || timeptr->tm_wday < 0 || timeptr->tm_wday > 6 ||

Completed in 2605 milliseconds

123