Home
last modified time | relevance | path

Searched refs:TIME_GET_MINUTE (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Modules/
Ddatetimemodule.c70 #define TIME_GET_MINUTE PyDateTime_TIME_GET_MINUTE macro
3101 return PyInt_FromLong(TIME_GET_MINUTE(self)); in time_minute()
3245 int m = TIME_GET_MINUTE(self); in time_repr()
3320 TIME_GET_MINUTE(self), in time_strftime()
3376 (TIME_GET_MINUTE(self) - offset1) * 60 + in time_richcompare()
3379 (TIME_GET_MINUTE(other) - offset2) * 60 + in time_richcompare()
3419 TIME_GET_MINUTE(self) - offset, in time_hash()
3447 int mm = TIME_GET_MINUTE(self); in time_replace()
3482 return (TIME_GET_MINUTE(self) - offset + TIME_GET_HOUR(self)*60) != 0; in time_nonzero()
4018 TIME_GET_MINUTE(time), in datetime_combine()