Lines Matching refs:tzinfoarg
1144 call_tzinfo_method(PyObject *tzinfo, const char *name, PyObject *tzinfoarg) in call_tzinfo_method() argument
1150 assert(tzinfoarg != NULL); in call_tzinfo_method()
1154 offset = PyObject_CallMethod(tzinfo, name, "O", tzinfoarg); in call_tzinfo_method()
1188 call_utcoffset(PyObject *tzinfo, PyObject *tzinfoarg) in call_utcoffset() argument
1190 return call_tzinfo_method(tzinfo, "utcoffset", tzinfoarg); in call_utcoffset()
1202 call_dst(PyObject *tzinfo, PyObject *tzinfoarg) in call_dst() argument
1204 return call_tzinfo_method(tzinfo, "dst", tzinfoarg); in call_dst()
1214 call_tzname(PyObject *tzinfo, PyObject *tzinfoarg) in call_tzname() argument
1221 assert(tzinfoarg != NULL); in call_tzname()
1227 tzinfoarg, NULL); in call_tzname()
1355 PyObject *tzinfo, PyObject *tzinfoarg) in format_utcoffset() argument
1363 offset = call_utcoffset(tzinfo, tzinfoarg); in format_utcoffset()
1402 make_Zreplacement(PyObject *object, PyObject *tzinfoarg) in make_Zreplacement() argument
1414 assert(tzinfoarg != NULL); in make_Zreplacement()
1415 temp = call_tzname(tzinfo, tzinfoarg); in make_Zreplacement()
1468 PyObject *tzinfoarg) in wrap_strftime() argument
1534 assert(tzinfoarg != NULL); in wrap_strftime()
1539 tzinfoarg) < 0) in wrap_strftime()
1557 tzinfoarg); in wrap_strftime()