Home
last modified time | relevance | path

Searched refs:PyDateTime_TIME_GET_MICROSECOND (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Include/
Ddatetime.h133 #define PyDateTime_TIME_GET_MICROSECOND(o) \ macro
/external/python/cpython3/Include/
Ddatetime.h142 #define PyDateTime_TIME_GET_MICROSECOND(o) \ macro
/external/python/pybind11/include/pybind11/
Dchrono.h139 msecs = microseconds(PyDateTime_TIME_GET_MICROSECOND(src.ptr())); in load()
/external/python/cpython2/Doc/c-api/
Ddatetime.rst217 .. c:function:: int PyDateTime_TIME_GET_MICROSECOND(PyDateTime_Time *o)
/external/python/cpython3/Doc/c-api/
Ddatetime.rst218 .. c:function:: int PyDateTime_TIME_GET_MICROSECOND(PyDateTime_Time *o)
/external/python/cpython2/Modules/
Ddatetimemodule.c72 #define TIME_GET_MICROSECOND PyDateTime_TIME_GET_MICROSECOND
/external/python/cpython3/Modules/
D_datetimemodule.c99 #define TIME_GET_MICROSECOND PyDateTime_TIME_GET_MICROSECOND
D_testcapimodule.c2828 microsecond = PyDateTime_TIME_GET_MICROSECOND(obj); in test_PyDateTime_TIME_GET()