• Home
  • Raw
  • Download

Lines Matching refs:tzinfoarg

780 call_tzinfo_method(PyObject *tzinfo, char *methname, PyObject *tzinfoarg)  in call_tzinfo_method()  argument
784 assert(tzinfo && methname && tzinfoarg); in call_tzinfo_method()
791 result = PyObject_CallMethod(tzinfo, methname, "O", tzinfoarg); in call_tzinfo_method()
821 call_utc_tzinfo_method(PyObject *tzinfo, char *name, PyObject *tzinfoarg, in call_utc_tzinfo_method() argument
829 assert(tzinfoarg != NULL); in call_utc_tzinfo_method()
832 u = call_tzinfo_method(tzinfo, name, tzinfoarg); in call_utc_tzinfo_method()
886 call_utcoffset(PyObject *tzinfo, PyObject *tzinfoarg, int *none) in call_utcoffset() argument
888 return call_utc_tzinfo_method(tzinfo, "utcoffset", tzinfoarg, none); in call_utcoffset()
894 offset_as_timedelta(PyObject *tzinfo, char *name, PyObject *tzinfoarg) { in offset_as_timedelta() argument
897 assert(tzinfo && name && tzinfoarg); in offset_as_timedelta()
904 int offset = call_utc_tzinfo_method(tzinfo, name, tzinfoarg, in offset_as_timedelta()
927 call_dst(PyObject *tzinfo, PyObject *tzinfoarg, int *none) in call_dst() argument
929 return call_utc_tzinfo_method(tzinfo, "dst", tzinfoarg, none); in call_dst()
938 call_tzname(PyObject *tzinfo, PyObject *tzinfoarg) in call_tzname() argument
944 assert(tzinfoarg != NULL); in call_tzname()
951 result = PyObject_CallMethod(tzinfo, "tzname", "O", tzinfoarg); in call_tzname()
991 classify_utcoffset(PyObject *op, PyObject *tzinfoarg, int *offset) in classify_utcoffset() argument
996 assert(tzinfoarg != NULL); in classify_utcoffset()
1006 *offset = call_utcoffset(tzinfo, tzinfoarg, &none); in classify_utcoffset()
1113 PyObject *tzinfo, PyObject *tzinfoarg) in format_utcoffset() argument
1123 offset = call_utcoffset(tzinfo, tzinfoarg, &none); in format_utcoffset()
1163 PyObject *timetuple, PyObject *tzinfoarg) in wrap_strftime() argument
1246 assert(tzinfoarg != NULL); in wrap_strftime()
1251 tzinfoarg) < 0) in wrap_strftime()
1270 assert(tzinfoarg != NULL); in wrap_strftime()
1271 temp = call_tzname(tzinfo, tzinfoarg); in wrap_strftime()