Home
last modified time | relevance | path

Searched refs:bound_method (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/python/autograph/pyct/
Dinspect_utils_test.py366 bound_method = types.MethodType(
370 self.assertEqual(inspect_utils.getmethodclass(bound_method), TestClass)
/external/python/cpython2/Objects/
Dabstract.c758 PyObject *bound_method = PyObject_GetAttrString(obj, "__format__"); local
759 if (bound_method != NULL) {
760 result = PyObject_CallFunctionObjArgs(bound_method,
763 Py_DECREF(bound_method);
/external/tensorflow/tensorflow/python/eager/
Dfunction.py2061 bound_method = types_lib.MethodType(
2098 tf_decorator.make_decorator(bound_method, bound_method_wrapper),