• Home
  • Raw
  • Download

Lines Matching refs:microsecond

2595     int hour, minute, second, microsecond;  in get_datetime_fromdateandtime()  local
2600 &hour, &minute, &second, &microsecond)) { in get_datetime_fromdateandtime()
2607 hour, minute, second, microsecond); in get_datetime_fromdateandtime()
2612 hour, minute, second, microsecond, in get_datetime_fromdateandtime()
2625 int hour, minute, second, microsecond, fold; in get_datetime_fromdateandtimeandfold() local
2630 &hour, &minute, &second, &microsecond, in get_datetime_fromdateandtimeandfold()
2638 hour, minute, second, microsecond, in get_datetime_fromdateandtimeandfold()
2644 hour, minute, second, microsecond, in get_datetime_fromdateandtimeandfold()
2657 int hour, minute, second, microsecond; in get_time_fromtime() local
2661 &hour, &minute, &second, &microsecond)) { in get_time_fromtime()
2666 rv = PyTime_FromTime(hour, minute, second, microsecond); in get_time_fromtime()
2670 hour, minute, second, microsecond, in get_time_fromtime()
2682 int hour, minute, second, microsecond, fold; in get_time_fromtimeandfold() local
2686 &hour, &minute, &second, &microsecond, in get_time_fromtimeandfold()
2692 rv = PyTime_FromTimeAndFold(hour, minute, second, microsecond, fold); in get_time_fromtimeandfold()
2696 hour, minute, second, microsecond, in get_time_fromtimeandfold()
2809 int hour, minute, second, microsecond; in test_PyDateTime_DATE_GET() local
2814 microsecond = PyDateTime_DATE_GET_MICROSECOND(obj); in test_PyDateTime_DATE_GET()
2817 return Py_BuildValue("(llllO)", hour, minute, second, microsecond, tzinfo); in test_PyDateTime_DATE_GET()
2823 int hour, minute, second, microsecond; in test_PyDateTime_TIME_GET() local
2828 microsecond = PyDateTime_TIME_GET_MICROSECOND(obj); in test_PyDateTime_TIME_GET()
2831 return Py_BuildValue("(llllO)", hour, minute, second, microsecond, tzinfo); in test_PyDateTime_TIME_GET()