Searched refs:_PyObject_LookupSpecial (Results 1 – 14 of 14) sorted by relevance
/third_party/python/Include/cpython/ |
D | object.h | 302 PyAPI_FUNC(PyObject *) _PyObject_LookupSpecial(PyObject *, _Py_Identifier *);
|
/third_party/python/Objects/ |
D | enumobject.c | 292 reversed_meth = _PyObject_LookupSpecial(seq, &PyId___reversed__); in reversed_new_impl()
|
D | abstract.c | 110 hint = _PyObject_LookupSpecial(o, &PyId___length_hint__); in PyObject_LengthHint() 799 meth = _PyObject_LookupSpecial(obj, &PyId___format__); in PyObject_Format() 1577 trunc_func = _PyObject_LookupSpecial(o, &PyId___trunc__); in PyNumber_Long() 2666 PyObject *checker = _PyObject_LookupSpecial(cls, &PyId___instancecheck__); in object_recursive_isinstance() 2754 checker = _PyObject_LookupSpecial(cls, &PyId___subclasscheck__); in object_issubclass()
|
D | object.c | 561 func = _PyObject_LookupSpecial(v, &PyId___bytes__); in PyObject_Bytes() 1517 PyObject *dirfunc = _PyObject_LookupSpecial(obj, &PyId___dir__); in _dir_object()
|
D | complexobject.c | 284 f = _PyObject_LookupSpecial(op, &PyId___complex__); in try_complex_special_method()
|
D | bytesobject.c | 573 func = _PyObject_LookupSpecial(v, &PyId___bytes__); in format_obj() 2604 else if ((func = _PyObject_LookupSpecial(x, &PyId___bytes__)) != NULL) { in bytes_new_impl()
|
D | typeobject.c | 1564 _PyObject_LookupSpecial(PyObject *self, _Py_Identifier *attrid) in _PyObject_LookupSpecial() function 5041 getnewargs_ex = _PyObject_LookupSpecial(obj, &PyId___getnewargs_ex__); in _PyObject_GetNewArguments() 5094 getnewargs = _PyObject_LookupSpecial(obj, &PyId___getnewargs__); in _PyObject_GetNewArguments() 8464 PyObject *set_name = _PyObject_LookupSpecial(value, &PyId___set_name__); in type_new_set_names()
|
D | dictobject.c | 2203 missing = _PyObject_LookupSpecial((PyObject *)mp, &PyId___missing__); in dict_subscript()
|
/third_party/python/Modules/ |
D | mathmodule.c | 1208 PyObject *method = _PyObject_LookupSpecial(number, &PyId___ceil__); in math_ceil() 1277 PyObject *method = _PyObject_LookupSpecial(number, &PyId___floor__); in math_floor() 2126 trunc = _PyObject_LookupSpecial(x, &PyId___trunc__); in math_trunc()
|
D | posixmodule.c | 1178 func = _PyObject_LookupSpecial(o, &PyId___fspath__); in path_converter() 14373 func = _PyObject_LookupSpecial(path, &PyId___fspath__); in PyOS_FSPath()
|
D | _testcapimodule.c | 3722 del = _PyObject_LookupSpecial(self, &PyId___tp_del__); in slot_tp_del()
|
/third_party/python/Python/ |
D | bltinmodule.c | 2288 round = _PyObject_LookupSpecial(number, &PyId___round__); in builtin_round_impl()
|
D | sysmodule.c | 1668 method = _PyObject_LookupSpecial(o, &PyId___sizeof__); in _PySys_GetSizeOf()
|
D | ceval.c | 5160 res = _PyObject_LookupSpecial(o, id); in special_lookup()
|