Home
last modified time | relevance | path

Searched refs:wrapped_function (Results 1 – 6 of 6) sorted by relevance

/external/python/oauth2client/oauth2client/contrib/django_util/
Ddecorators.py70 def curry_wrapper(wrapped_function): argument
71 @wraps(wrapped_function)
87 return wrapped_function(request, *args, **kwargs)
130 def curry_wrapper(wrapped_function): argument
131 @wraps(wrapped_function)
138 return wrapped_function(request, *args, **kwargs)
/external/autotest/client/cros/
Dxmlrpc_server.py115 def decorator(wrapped_function): argument
122 @functools.wraps(wrapped_function)
131 logging.debug('%s()', wrapped_function.__name__)
133 return wrapped_function(*args, **kwargs)
137 wrapped_function.__name__,
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/_cython/
Dtest_utilities.py25 def wrapped_function(): function
33 self._thread = threading.Thread(target=wrapped_function)
/external/python/oauth2client/oauth2client/contrib/
Dflask_util.py507 def curry_wrapper(wrapped_function): argument
508 @wraps(wrapped_function)
524 return wrapped_function(*args, **kwargs)
/external/tensorflow/tensorflow/python/eager/
Dwrap_function.py292 wrapped_function = self._wrapped_function.prune(fn_inputs, fn_outputs)
294 self._functions[name] = wrapped_function
295 return wrapped_function
/external/tensorflow/tensorflow/python/util/
Ddeprecation.py113 def _wrap_decorator(wrapped_function): argument
130 return tf_decorator.make_decorator(wrapped_function, wrapper_func)