Lines Matching defs:second
67 int8_t second;
76 int8_t second;
131 int8_t *second);
1211 (int64_t)(self->minute * 60) + (int64_t)(self->second));
1217 int8_t minute, int8_t second, CalendarRule *out)
1252 .second = second,
1278 // days are accounted for in the hour, minute and second portions.
1298 (self->minute * 60) + self->second;
1304 int8_t second, DayRule *out)
1325 .second = second,
1743 int8_t second = 0;
1785 parse_transition_time(ptr, &hour, &minute, &second);
1797 if (calendarrule_new(month, week, day, hour, minute, second, rv)) {
1827 parse_transition_time(ptr, &hour, &minute, &second);
1839 if (dayrule_new(julian, day, hour, minute, second, rv)) {
1852 int8_t *second)
1867 int8_t *components[3] = {hour, minute, second};
2203 int hour, minute, second;
2211 second = PyDateTime_DATE_GET_SECOND(dt);
2247 num = PyObject_GetAttrString(dt, "second");
2251 second = PyLong_AsLong(num);
2253 if (second == -1) {
2259 (int64_t)(hour * 3600 + minute * 60 + second);