Searched refs:lookup_maybe (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython2/Objects/ |
D | typeobject.c | 1215 lookup_maybe(PyObject *self, char *attrstr, PyObject **attrobj) in lookup_maybe() function 1238 PyObject *res = lookup_maybe(self, attrstr, attrobj); in lookup_method() 1248 return lookup_maybe(self, attrstr, attrobj); in _PyObject_LookupSpecial() 1262 func = lookup_maybe(o, name, nameobj); in call_method() 1300 func = lookup_maybe(o, name, nameobj); in call_maybe() 5246 func = lookup_maybe(self, "__contains__", &contains_str); 5334 func = lookup_maybe(self, "__nonzero__", &nonzero_str); 5338 func = lookup_maybe(self, "__len__", &len_str); 5933 del = lookup_maybe(self, "__del__", &del_str);
|