Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ddatetimemodule.c69 #define TIME_GET_HOUR PyDateTime_TIME_GET_HOUR macro
3095 return PyInt_FromLong(TIME_GET_HOUR(self)); in time_hour()
3244 int h = TIME_GET_HOUR(self); in time_repr()
3319 TIME_GET_HOUR(self), in time_strftime()
3375 offset1 = TIME_GET_HOUR(self) * 3600 + in time_richcompare()
3378 offset2 = TIME_GET_HOUR(other) * 3600 + in time_richcompare()
3418 hour = divmod(TIME_GET_HOUR(self) * 60 + in time_hash()
3446 int hh = TIME_GET_HOUR(self); in time_replace()
3482 return (TIME_GET_MINUTE(self) - offset + TIME_GET_HOUR(self)*60) != 0; in time_nonzero()
4017 TIME_GET_HOUR(time), in datetime_combine()