/external/python/cpython3/Objects/ |
D | abstract.c | 104 hint = _PyObject_LookupSpecial(o, &PyId___length_hint__); in PyObject_LengthHint() 730 meth = _PyObject_LookupSpecial(obj, &PyId___format__); in PyObject_Format() 1366 trunc_func = _PyObject_LookupSpecial(o, &PyId___trunc__); in PyNumber_Long() 2405 checker = _PyObject_LookupSpecial(cls, &PyId___instancecheck__); in PyObject_IsInstance() 2479 checker = _PyObject_LookupSpecial(cls, &PyId___subclasscheck__); in PyObject_IsSubclass()
|
D | enumobject.c | 278 reversed_meth = _PyObject_LookupSpecial(seq, &PyId___reversed__); in reversed_new_impl()
|
D | object.c | 623 func = _PyObject_LookupSpecial(v, &PyId___bytes__); in PyObject_Bytes() 1493 PyObject *dirfunc = _PyObject_LookupSpecial(obj, &PyId___dir__); in _dir_object()
|
D | complexobject.c | 282 f = _PyObject_LookupSpecial(op, &PyId___complex__); in try_complex_special_method()
|
D | bytesobject.c | 560 func = _PyObject_LookupSpecial(v, &PyId___bytes__); in format_obj() 2579 func = _PyObject_LookupSpecial(x, &PyId___bytes__); in bytes_new()
|
D | typeobject.c | 1425 _PyObject_LookupSpecial(PyObject *self, _Py_Identifier *attrid) in _PyObject_LookupSpecial() function 4262 getnewargs_ex = _PyObject_LookupSpecial(obj, &PyId___getnewargs_ex__); in _PyObject_GetNewArguments() 4315 getnewargs = _PyObject_LookupSpecial(obj, &PyId___getnewargs__); in _PyObject_GetNewArguments() 7275 set_name = _PyObject_LookupSpecial(value, &PyId___set_name__); in set_names()
|
D | dictobject.c | 2033 missing = _PyObject_LookupSpecial((PyObject *)mp, &PyId___missing__); in dict_subscript()
|
/external/python/cpython3/Modules/ |
D | mathmodule.c | 1091 method = _PyObject_LookupSpecial(number, &PyId___ceil__); in math_ceil() 1149 method = _PyObject_LookupSpecial(number, &PyId___floor__); in math_floor() 1737 trunc = _PyObject_LookupSpecial(x, &PyId___trunc__); in math_trunc()
|
D | posixmodule.c | 984 func = _PyObject_LookupSpecial(o, &PyId___fspath__); in path_converter() 12525 func = _PyObject_LookupSpecial(path, &PyId___fspath__); in PyOS_FSPath()
|
D | _testcapimodule.c | 3191 del = _PyObject_LookupSpecial(self, &PyId___tp_del__); in slot_tp_del()
|
/external/python/cpython2/Objects/ |
D | enumobject.c | 252 reversed_meth = _PyObject_LookupSpecial(seq, "__reversed__", in reversed_new()
|
D | abstract.c | 113 hintmeth = _PyObject_LookupSpecial(o, "__length_hint__", &hintstrobj); in _PyObject_LengthHint() 828 PyObject *method = _PyObject_LookupSpecial(obj, "__format__", 2966 checker = _PyObject_LookupSpecial(cls, "__instancecheck__", &name); 3044 checker = _PyObject_LookupSpecial(cls, "__subclasscheck__", &name);
|
D | object.c | 516 func = _PyObject_LookupSpecial(v, "__unicode__", &unicodestr); in PyObject_Unicode() 1934 dirfunc = _PyObject_LookupSpecial(obj, "__dir__", &dir_str); in _dir_object()
|
D | complexobject.c | 307 f = _PyObject_LookupSpecial(op, "__complex__", &complexstr); in try_complex_special_method()
|
D | bytesobject.c | 554 func = _PyObject_LookupSpecial(v, &PyId___bytes__); in format_obj() 2584 func = _PyObject_LookupSpecial(x, &PyId___bytes__); in bytes_new()
|
D | dictobject.c | 1261 missing = _PyObject_LookupSpecial((PyObject *)mp, in dict_subscript()
|
D | typeobject.c | 1245 _PyObject_LookupSpecial(PyObject *self, char *attrstr, PyObject **attrobj) in _PyObject_LookupSpecial() function
|
/external/python/cpython2/Include/ |
D | object.h | 454 PyAPI_FUNC(PyObject *) _PyObject_LookupSpecial(PyObject *, char *, PyObject **);
|
/external/python/cpython3/Include/ |
D | object.h | 507 PyAPI_FUNC(PyObject *) _PyObject_LookupSpecial(PyObject *, _Py_Identifier *);
|
/external/python/cpython2/Python/ |
D | sysmodule.c | 703 PyObject *method = _PyObject_LookupSpecial(o, "__sizeof__", in _PySys_GetSizeOf()
|
D | ceval.c | 3631 res = _PyObject_LookupSpecial(o, meth, cache); in special_lookup()
|
/external/python/cpython3/Python/ |
D | sysmodule.c | 1230 method = _PyObject_LookupSpecial(o, &PyId___sizeof__); in _PySys_GetSizeOf()
|
D | bltinmodule.c | 2188 round = _PyObject_LookupSpecial(number, &PyId___round__); in builtin_round_impl()
|
D | ceval.c | 3972 res = _PyObject_LookupSpecial(o, id); in special_lookup()
|