/aosp_15_r20/external/python/cpython2/Doc/c-api/ |
D | conversion.rst | 54 .. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_excep… 102 Use :c:func:`PyOS_string_to_double` instead. 165 Use :c:func:`PyOS_string_to_double` instead.
|
/aosp_15_r20/external/python/cpython2/Include/ |
D | pystrtod.h | 15 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/ |
D | pystrtod.h | 9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
|
/aosp_15_r20/external/python/cpython3/Include/ |
D | pystrtod.h | 9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/ |
D | pystrtod.h | 9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/ |
D | pystrtod.h | 9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/ |
D | pystrtod.h | 9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
|
/aosp_15_r20/external/python/cpython2/Python/ |
D | marshal.c | 718 dx = PyOS_string_to_double(buf, NULL, NULL); in r_object() 759 c.real = PyOS_string_to_double(buf, NULL, NULL); in r_object() 772 c.imag = PyOS_string_to_double(buf, NULL, NULL); in r_object()
|
D | pystrtod.c | 336 PyOS_string_to_double(const char *s, in PyOS_string_to_double() function
|
D | ast.c | 3354 complex.imag = PyOS_string_to_double(s, (char **)&end, NULL); in parsenumber() 3362 dx = PyOS_string_to_double(s, NULL, NULL); in parsenumber()
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | complexobject.c | 775 z = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner() 788 y = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner()
|
D | floatobject.c | 184 x = PyOS_string_to_double(s, (char **)&end, NULL); in float_from_string_inner()
|
/aosp_15_r20/external/python/cpython3/Parser/ |
D | pegen.c | 589 compl.imag = PyOS_string_to_double(s, (char **)&end, NULL); in parsenumber_raw() 595 dx = PyOS_string_to_double(s, NULL, NULL); in parsenumber_raw()
|
/aosp_15_r20/external/python/cpython2/Objects/ |
D | complexobject.c | 1043 z = PyOS_string_to_double(s, &end, NULL); in complex_subtype_from_string() 1056 y = PyOS_string_to_double(s, &end, NULL); in complex_subtype_from_string()
|
D | floatobject.c | 224 x = PyOS_string_to_double(s, (char **)&end, NULL); in PyFloat_FromString()
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | conversion.rst | 51 .. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_excep…
|
/aosp_15_r20/external/python/cpython3/Python/ |
D | pystrtod.c | 337 PyOS_string_to_double(const char *s, in PyOS_string_to_double() function
|
D | marshal.c | 925 return PyOS_string_to_double(buf, NULL, NULL); in r_float_str()
|
/aosp_15_r20/external/python/cpython3/PC/ |
D | python3dll.c | 497 EXPORT_FUNC(PyOS_string_to_double)
|
/aosp_15_r20/external/python/cpython2/Modules/ |
D | stropmodule.c | 886 x = PyOS_string_to_double(s, &end, PyExc_OverflowError); in strop_atof()
|
D | _json.c | 1376 double d = PyOS_string_to_double(PyString_AS_STRING(numstr), in _match_number_str()
|
/aosp_15_r20/external/python/cpython3/Doc/data/ |
D | stable_abi.dat | 471 function,PyOS_string_to_double,3.2,,
|
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/ |
D | 3.1.rst | 508 * Added a new :c:func:`PyOS_string_to_double` function to replace the
|
/aosp_15_r20/external/python/cpython3/Misc/ |
D | stable_abi.toml | 1115 [function.PyOS_string_to_double]
|
/aosp_15_r20/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 3209 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double() 3218 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double()
|