| /external/python/cpython3/Include/ |
| D | pystrtod.h | 9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
|
| /external/python/cpython2/Include/ |
| D | pystrtod.h | 15 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
|
| /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.
|
| /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()
|
| /external/python/cpython3/Objects/ |
| D | complexobject.c | 753 z = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner() 766 y = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner()
|
| D | floatobject.c | 165 x = PyOS_string_to_double(s, (char **)&end, NULL); in float_from_string_inner()
|
| /external/python/cpython3/Doc/c-api/ |
| D | conversion.rst | 50 .. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_excep…
|
| /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()
|
| /external/python/cpython3/Python/ |
| D | pystrtod.c | 338 PyOS_string_to_double(const char *s, in PyOS_string_to_double() function
|
| D | marshal.c | 874 return PyOS_string_to_double(buf, NULL, NULL); in r_float_str()
|
| /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()
|
| D | cPickle.c | 3618 d = PyOS_string_to_double(s, &endptr, PyExc_OverflowError); in load_float()
|
| /external/python/cpython3/PC/ |
| D | python3dll.c | 486 EXPORT_FUNC(PyOS_string_to_double)
|
| /external/python/cpython3/Doc/data/ |
| D | stable_abi.dat | 459 function,PyOS_string_to_double,3.2,
|
| /external/python/cpython3/Parser/ |
| D | pegen.c | 1063 compl.imag = PyOS_string_to_double(s, (char **)&end, NULL); in parsenumber_raw() 1069 dx = PyOS_string_to_double(s, NULL, NULL); in parsenumber_raw()
|
| /external/python/cpython3/Doc/whatsnew/ |
| D | 3.1.rst | 507 * Added a new :c:func:`PyOS_string_to_double` function to replace the
|
| D | 2.7.rst | 2153 a new :c:func:`PyOS_string_to_double` function was added. The old 2541 * Use the new :c:func:`PyOS_string_to_double` function instead of the old
|
| /external/python/cpython3/Misc/ |
| D | stable_abi.txt | 1023 function PyOS_string_to_double
|
| /external/python/cpython3/Modules/ |
| D | _testcapimodule.c | 3034 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double() 3043 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double()
|
| D | _pickle.c | 5391 d = PyOS_string_to_double(s, &endptr, PyExc_OverflowError); in load_float()
|
| /external/python/cpython2/Doc/whatsnew/ |
| D | 2.7.rst | 2129 a new :c:func:`PyOS_string_to_double` function was added. The old 2511 * Use the new :c:func:`PyOS_string_to_double` function instead of the old
|