Searched refs:call_utcoffset (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Modules/ |
D | datetimemodule.c | 886 call_utcoffset(PyObject *tzinfo, PyObject *tzinfoarg, int *none) in call_utcoffset() function 1006 *offset = call_utcoffset(tzinfo, tzinfoarg, &none); in classify_utcoffset() 1123 offset = call_utcoffset(tzinfo, tzinfoarg, &none); in format_utcoffset() 2901 off = call_utcoffset(dt->tzinfo, (PyObject *)dt, &none); in tzinfo_fromutc() 3482 offset = call_utcoffset(self->tzinfo, Py_None, &none); in time_nonzero() 4438 offset = call_utcoffset(self->tzinfo, (PyObject *)self, &none); in datetime_astimezone() 4543 offset = call_utcoffset(self->tzinfo, (PyObject *)self, &none); in datetime_utctimetuple()
|
/external/python/cpython3/Modules/ |
D | _datetimemodule.c | 1188 call_utcoffset(PyObject *tzinfo, PyObject *tzinfoarg) in call_utcoffset() function 1363 offset = call_utcoffset(tzinfo, tzinfoarg); in format_utcoffset() 4032 return call_utcoffset(GET_TIME_TZINFO(self), Py_None); in time_utcoffset() 5111 return call_utcoffset(GET_DT_TZINFO(self), self); in datetime_utcoffset() 5799 offset = call_utcoffset(self_tzinfo, (PyObject *)self); in datetime_astimezone() 6017 offset = call_utcoffset(tzinfo, (PyObject *)self); in datetime_utctimetuple()
|