Searched refs:PyDateTime_TIME_GET_HOUR (Results 1 – 8 of 8) sorted by relevance
130 #define PyDateTime_TIME_GET_HOUR(o) (((PyDateTime_Time*)o)->data[0]) macro
139 #define PyDateTime_TIME_GET_HOUR(o) (((PyDateTime_Time*)o)->data[0]) macro
134 cal.tm_hour = PyDateTime_TIME_GET_HOUR(src.ptr()); in load()
196 .. c:function:: int PyDateTime_TIME_GET_HOUR(PyDateTime_Time *o)
203 .. c:function:: int PyDateTime_TIME_GET_HOUR(PyDateTime_Time *o)
69 #define TIME_GET_HOUR PyDateTime_TIME_GET_HOUR73 #define TIME_SET_HOUR(o, v) (PyDateTime_TIME_GET_HOUR(o) = (v))
96 #define TIME_GET_HOUR PyDateTime_TIME_GET_HOUR101 #define TIME_SET_HOUR(o, v) (PyDateTime_TIME_GET_HOUR(o) = (v))
2825 hour = PyDateTime_TIME_GET_HOUR(obj); in test_PyDateTime_TIME_GET()