Home
last modified time | relevance | path

Searched refs:lookup_method (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dtypeobject.c1236 lookup_method(PyObject *self, char *attrstr, PyObject **attrobj) in lookup_method() function
1665 mro = lookup_method((PyObject *)type, "mro", &mro_str); in mro_internal()
5475 func = lookup_method(self, "__cmp__", &cmp_str);
5530 func = lookup_method(self, "__repr__", &repr_str);
5547 func = lookup_method(self, "__str__", &str_str);
5566 func = lookup_method(self, "__hash__", &hash_str);
5582 func = lookup_method(self, "__eq__", &eq_str);
5585 func = lookup_method(self, "__cmp__", &cmp_str);
5603 PyObject *meth = lookup_method(self, "__call__", &call_str);
5740 func = lookup_method(self, name_op[op], &op_str[op]);
[all …]
/external/python/cpython3/Objects/
Dtypeobject.c1467 lookup_method(PyObject *self, _Py_Identifier *attrid, int *unbound) in lookup_method() function
1509 func = lookup_method(obj, name, &unbound); in call_method()
1915 PyObject *mro_meth = lookup_method((PyObject *)type, &PyId_mro, in mro_invoke()
6372 PyObject *meth = lookup_method(self, &PyId___call__, &unbound); in slot_tp_call()
6607 PyObject *meth = lookup_method(self, &PyId___init__, &unbound); in slot_tp_init()