Searched refs:unaryfunc (Results 1 – 19 of 19) sorted by relevance
/third_party/boost/libs/python/src/converter/ |
D | builtin_converters.cpp | 80 unaryfunc* slot = SlotPolicy::get_slot(obj); in convertible() 87 unaryfunc creator = *static_cast<unaryfunc*>(data->convertible); in construct() 113 unaryfunc py_object_identity = identity_unaryfunc; 121 static unaryfunc* get_slot(PyObject* obj) in get_slot() 155 static unaryfunc* get_slot(PyObject* obj) in get_slot() 187 static unaryfunc* get_slot(PyObject* obj) in get_slot() 242 static unaryfunc* get_slot(PyObject* obj) in get_slot() 312 static unaryfunc* get_slot(PyObject* obj) in get_slot() 341 static unaryfunc* get_slot(PyObject* obj) in get_slot() 375 unaryfunc py_unicode_as_string_unaryfunc = PyUnicode_AsUTF8String; [all …]
|
/third_party/python/Include/cpython/ |
D | object.h | 122 unaryfunc nb_negative; 123 unaryfunc nb_positive; 124 unaryfunc nb_absolute; 126 unaryfunc nb_invert; 132 unaryfunc nb_int; 134 unaryfunc nb_float; 152 unaryfunc nb_index; 179 unaryfunc am_await; 180 unaryfunc am_aiter; 181 unaryfunc am_anext;
|
/third_party/python/Objects/ |
D | interpreteridobject.c | 137 (unaryfunc)interpid_int, /* nb_int */ 157 (unaryfunc)interpid_int, /* nb_index */
|
D | complexobject.c | 1056 (unaryfunc)complex_neg, /* nb_negative */ 1057 (unaryfunc)complex_pos, /* nb_positive */ 1058 (unaryfunc)complex_abs, /* nb_absolute */
|
D | genobject.c | 855 unaryfunc getter = NULL; in _PyCoro_GetAwaitableIter() 960 (unaryfunc)coro_await, /* am_await */ 1360 (unaryfunc)async_gen_anext /* am_anext */
|
D | floatobject.c | 1853 (unaryfunc)float_neg, /* nb_negative */ 1855 (unaryfunc)float_abs, /* nb_absolute */
|
D | weakrefobject.c | 796 (unaryfunc)proxy_repr, /* tp_repr */
|
D | typeobject.c | 3963 unaryfunc f; in object_str() 5796 unaryfunc func = (unaryfunc)wrapped; in wrap_unaryfunc() 6095 unaryfunc func = (unaryfunc)wrapped; in RICHCMP_WRAPPER()
|
D | longobject.c | 5687 (unaryfunc)long_neg, /*nb_negative*/ 5689 (unaryfunc)long_abs, /*tp_absolute*/ 5691 (unaryfunc)long_invert, /*nb_invert*/
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 196 …| :c:member:`~PyAsyncMethods.am_await` | :c:type:`unaryfunc` | __… 198 …| :c:member:`~PyAsyncMethods.am_aiter` | :c:type:`unaryfunc` | __… 200 …| :c:member:`~PyAsyncMethods.am_anext` | :c:type:`unaryfunc` | __… 232 …| :c:member:`~PyNumberMethods.nb_negative` | :c:type:`unaryfunc` | __… 234 …| :c:member:`~PyNumberMethods.nb_positive` | :c:type:`unaryfunc` | __… 236 …| :c:member:`~PyNumberMethods.nb_absolute` | :c:type:`unaryfunc` | __… 240 …| :c:member:`~PyNumberMethods.nb_invert` | :c:type:`unaryfunc` | __… 267 …| :c:member:`~PyNumberMethods.nb_int` | :c:type:`unaryfunc` | __… 271 …| :c:member:`~PyNumberMethods.nb_float` | :c:type:`unaryfunc` | __… 281 …| :c:member:`~PyNumberMethods.nb_index` | :c:type:`unaryfunc` | __… [all …]
|
/third_party/python/Include/ |
D | object.h | 163 typedef PyObject * (*unaryfunc)(PyObject *); typedef
|
/third_party/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 1885 (unaryfunc)0, /*nb_negative*/ in SwigPyObject_TypeOnce() 1886 (unaryfunc)0, /*nb_positive*/ in SwigPyObject_TypeOnce() 1887 (unaryfunc)0, /*nb_absolute*/ in SwigPyObject_TypeOnce() 1898 (unaryfunc)SwigPyObject_long, /*nb_int*/ in SwigPyObject_TypeOnce() 1900 (unaryfunc)SwigPyObject_long, /*nb_long*/ in SwigPyObject_TypeOnce() 1904 (unaryfunc)0, /*nb_float*/ in SwigPyObject_TypeOnce() 1906 (unaryfunc)SwigPyObject_oct, /*nb_oct*/ in SwigPyObject_TypeOnce() 1907 (unaryfunc)SwigPyObject_hex, /*nb_hex*/ in SwigPyObject_TypeOnce()
|
/third_party/flutter/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 1862 (unaryfunc)0, /*nb_negative*/ in SwigPyObject_TypeOnce() 1863 (unaryfunc)0, /*nb_positive*/ in SwigPyObject_TypeOnce() 1864 (unaryfunc)0, /*nb_absolute*/ in SwigPyObject_TypeOnce() 1875 (unaryfunc)SwigPyObject_long, /*nb_int*/ in SwigPyObject_TypeOnce() 1877 (unaryfunc)SwigPyObject_long, /*nb_long*/ in SwigPyObject_TypeOnce() 1881 (unaryfunc)0, /*nb_float*/ in SwigPyObject_TypeOnce() 1883 (unaryfunc)SwigPyObject_oct, /*nb_oct*/ in SwigPyObject_TypeOnce() 1884 (unaryfunc)SwigPyObject_hex, /*nb_hex*/ in SwigPyObject_TypeOnce()
|
/third_party/python/Modules/_decimal/ |
D | _decimal.c | 2228 static unaryfunc _py_float_abs; 4707 (unaryfunc) nm_mpd_qminus, 4708 (unaryfunc) nm_mpd_qplus, 4709 (unaryfunc) nm_mpd_qabs, 4711 (unaryfunc) 0, /* no bit-complement */ 4717 (unaryfunc) nm_dec_as_long, 4719 (unaryfunc) PyDec_AsFloat,
|
/third_party/python/Modules/ |
D | _xxsubinterpretersmodule.c | 1572 (unaryfunc)channelid_int, /* nb_int */ 1592 (unaryfunc)channelid_int, /* nb_index */
|
D | _datetimemodule.c | 2691 (unaryfunc)delta_negative, /* nb_negative */ 2692 (unaryfunc)delta_positive, /* nb_positive */ 2693 (unaryfunc)delta_abs, /* nb_absolute */
|
D | _asynciomodule.c | 1485 (unaryfunc)future_new_iter, /* am_await */
|
D | _testcapimodule.c | 5873 (unaryfunc)awaitObject_await, /* am_await */
|
/third_party/python/Python/ |
D | ceval.c | 2060 unaryfunc getter = NULL; in _PyEval_EvalFrameDefault() 2104 unaryfunc getter = NULL; in _PyEval_EvalFrameDefault()
|