Home
last modified time | relevance | path

Searched refs:_PyObject_LookupSpecial (Results 1 – 24 of 24) sorted by relevance

/external/python/cpython3/Objects/
Dabstract.c104 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()
Denumobject.c278 reversed_meth = _PyObject_LookupSpecial(seq, &PyId___reversed__); in reversed_new_impl()
Dobject.c623 func = _PyObject_LookupSpecial(v, &PyId___bytes__); in PyObject_Bytes()
1493 PyObject *dirfunc = _PyObject_LookupSpecial(obj, &PyId___dir__); in _dir_object()
Dcomplexobject.c282 f = _PyObject_LookupSpecial(op, &PyId___complex__); in try_complex_special_method()
Dbytesobject.c560 func = _PyObject_LookupSpecial(v, &PyId___bytes__); in format_obj()
2579 func = _PyObject_LookupSpecial(x, &PyId___bytes__); in bytes_new()
Dtypeobject.c1425 _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()
Ddictobject.c2033 missing = _PyObject_LookupSpecial((PyObject *)mp, &PyId___missing__); in dict_subscript()
/external/python/cpython3/Modules/
Dmathmodule.c1091 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()
Dposixmodule.c984 func = _PyObject_LookupSpecial(o, &PyId___fspath__); in path_converter()
12525 func = _PyObject_LookupSpecial(path, &PyId___fspath__); in PyOS_FSPath()
D_testcapimodule.c3191 del = _PyObject_LookupSpecial(self, &PyId___tp_del__); in slot_tp_del()
/external/python/cpython2/Objects/
Denumobject.c252 reversed_meth = _PyObject_LookupSpecial(seq, "__reversed__", in reversed_new()
Dabstract.c113 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);
Dobject.c516 func = _PyObject_LookupSpecial(v, "__unicode__", &unicodestr); in PyObject_Unicode()
1934 dirfunc = _PyObject_LookupSpecial(obj, "__dir__", &dir_str); in _dir_object()
Dcomplexobject.c307 f = _PyObject_LookupSpecial(op, "__complex__", &complexstr); in try_complex_special_method()
Dbytesobject.c554 func = _PyObject_LookupSpecial(v, &PyId___bytes__); in format_obj()
2584 func = _PyObject_LookupSpecial(x, &PyId___bytes__); in bytes_new()
Ddictobject.c1261 missing = _PyObject_LookupSpecial((PyObject *)mp, in dict_subscript()
Dtypeobject.c1245 _PyObject_LookupSpecial(PyObject *self, char *attrstr, PyObject **attrobj) in _PyObject_LookupSpecial() function
/external/python/cpython2/Include/
Dobject.h454 PyAPI_FUNC(PyObject *) _PyObject_LookupSpecial(PyObject *, char *, PyObject **);
/external/python/cpython3/Include/
Dobject.h507 PyAPI_FUNC(PyObject *) _PyObject_LookupSpecial(PyObject *, _Py_Identifier *);
/external/python/cpython2/Python/
Dsysmodule.c703 PyObject *method = _PyObject_LookupSpecial(o, "__sizeof__", in _PySys_GetSizeOf()
Dceval.c3631 res = _PyObject_LookupSpecial(o, meth, cache); in special_lookup()
/external/python/cpython3/Python/
Dsysmodule.c1230 method = _PyObject_LookupSpecial(o, &PyId___sizeof__); in _PySys_GetSizeOf()
Dbltinmodule.c2188 round = _PyObject_LookupSpecial(number, &PyId___round__); in builtin_round_impl()
Dceval.c3972 res = _PyObject_LookupSpecial(o, id); in special_lookup()