• Home
  • Raw
  • Download

Lines Matching refs:PyDateTime_Time

638     size_t size = aware ? sizeof(PyDateTime_Time) : sizeof(_PyDateTime_BaseTime);  in time_alloc()
975 PyDateTime_Time *self; in new_time_ex2()
985 self = (PyDateTime_Time *) (type->tp_alloc(type, aware)); in new_time_ex2()
1141 tzinfo = ((PyDateTime_Time *)self)->tzinfo; in get_tzinfo_member()
4091 time_hour(PyDateTime_Time *self, void *unused) in time_hour()
4097 time_minute(PyDateTime_Time *self, void *unused) in time_minute()
4104 py_time_second(PyDateTime_Time *self, void *unused) in py_time_second()
4110 time_microsecond(PyDateTime_Time *self, void *unused) in time_microsecond()
4116 time_tzinfo(PyDateTime_Time *self, void *unused) in time_tzinfo()
4124 time_fold(PyDateTime_Time *self, void *unused) in time_fold()
4149 PyDateTime_Time *me; in time_from_pickle()
4157 me = (PyDateTime_Time *) (type->tp_alloc(type, aware)); in time_from_pickle()
4243 time_dealloc(PyDateTime_Time *self) in time_dealloc()
4267 time_tzname(PyDateTime_Time *self, PyObject *unused) { in time_tzname()
4276 time_repr(PyDateTime_Time *self) in time_repr()
4302 time_str(PyDateTime_Time *self) in time_str()
4308 time_isoformat(PyDateTime_Time *self, PyObject *args, PyObject *kw) in time_isoformat()
4373 time_strftime(PyDateTime_Time *self, PyObject *args, PyObject *kw) in time_strftime()
4418 diff = memcmp(((PyDateTime_Time *)self)->data, in time_richcompare()
4419 ((PyDateTime_Time *)other)->data, in time_richcompare()
4436 diff = memcmp(((PyDateTime_Time *)self)->data, in time_richcompare()
4437 ((PyDateTime_Time *)other)->data, in time_richcompare()
4481 time_hash(PyDateTime_Time *self) in time_hash()
4537 time_replace(PyDateTime_Time *self, PyObject *args, PyObject *kw) in time_replace()
4626 time_getstate(PyDateTime_Time *self, int proto) in time_getstate()
4647 time_reduce_ex(PyDateTime_Time *self, PyObject *args) in time_reduce_ex()
4657 time_reduce(PyDateTime_Time *self, PyObject *arg) in time_reduce()
4711 sizeof(PyDateTime_Time), /* tp_basicsize */
5183 tzinfo = ((PyDateTime_Time *)time)->tzinfo; in datetime_combine()