• Home
  • Raw
  • Download

Lines Matching refs:usecond

884                  int second, int usecond, PyObject *tzinfo, int fold, PyTypeObject *type)  in new_datetime_ex2()  argument
892 if (check_time_args(hour, minute, second, usecond, fold) < 0) { in new_datetime_ex2()
906 DATE_SET_MICROSECOND(self, usecond); in new_datetime_ex2()
918 int second, int usecond, PyObject *tzinfo, PyTypeObject *type) in new_datetime_ex() argument
920 return new_datetime_ex2(year, month, day, hour, minute, second, usecond, in new_datetime_ex()
930 int second, int usecond, PyObject *tzinfo, in new_datetime_subclass_fold_ex() argument
935 dt = new_datetime(year, month, day, hour, minute, second, usecond, in new_datetime_subclass_fold_ex()
946 usecond, in new_datetime_subclass_fold_ex()
955 int second, int usecond, PyObject *tzinfo, in new_datetime_subclass_ex() argument
958 second, usecond, tzinfo, 0, in new_datetime_subclass_ex()
964 new_time_ex2(int hour, int minute, int second, int usecond, in new_time_ex2() argument
970 if (check_time_args(hour, minute, second, usecond, fold) < 0) { in new_time_ex2()
984 TIME_SET_MICROSECOND(self, usecond); in new_time_ex2()
995 new_time_ex(int hour, int minute, int second, int usecond, in new_time_ex() argument
998 return new_time_ex2(hour, minute, second, usecond, tzinfo, 0, type); in new_time_ex()
3960 int usecond = 0; in time_new() local
4004 &hour, &minute, &second, &usecond, in time_new()
4006 self = new_time_ex2(hour, minute, second, usecond, tzinfo, fold, in time_new()
4629 int usecond = 0; in datetime_new() local
4674 &second, &usecond, &tzinfo, &fold)) { in datetime_new()
4676 hour, minute, second, usecond, in datetime_new()