Lines Matching refs:tzinfoarg
1154 call_tzinfo_method(PyObject *tzinfo, const char *name, PyObject *tzinfoarg) in call_tzinfo_method() argument
1160 assert(tzinfoarg != NULL); in call_tzinfo_method()
1164 offset = PyObject_CallMethod(tzinfo, name, "O", tzinfoarg); in call_tzinfo_method()
1200 call_utcoffset(PyObject *tzinfo, PyObject *tzinfoarg) in call_utcoffset() argument
1202 return call_tzinfo_method(tzinfo, "utcoffset", tzinfoarg); in call_utcoffset()
1214 call_dst(PyObject *tzinfo, PyObject *tzinfoarg) in call_dst() argument
1216 return call_tzinfo_method(tzinfo, "dst", tzinfoarg); in call_dst()
1226 call_tzname(PyObject *tzinfo, PyObject *tzinfoarg) in call_tzname() argument
1233 assert(tzinfoarg != NULL); in call_tzname()
1238 result = _PyObject_CallMethodIdOneArg(tzinfo, &PyId_tzname, tzinfoarg); in call_tzname()
1366 PyObject *tzinfo, PyObject *tzinfoarg) in format_utcoffset() argument
1374 offset = call_utcoffset(tzinfo, tzinfoarg); in format_utcoffset()
1413 make_Zreplacement(PyObject *object, PyObject *tzinfoarg) in make_Zreplacement() argument
1425 assert(tzinfoarg != NULL); in make_Zreplacement()
1426 temp = call_tzname(tzinfo, tzinfoarg); in make_Zreplacement()
1479 PyObject *tzinfoarg) in wrap_strftime() argument
1545 assert(tzinfoarg != NULL); in wrap_strftime()
1550 tzinfoarg) < 0) in wrap_strftime()
1568 tzinfoarg); in wrap_strftime()