Searched refs:wrapped_function (Results 1 – 6 of 6) sorted by relevance
/external/python/oauth2client/oauth2client/contrib/django_util/ |
D | decorators.py | 70 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/ |
D | xmlrpc_server.py | 115 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/ |
D | test_utilities.py | 25 def wrapped_function(): function 33 self._thread = threading.Thread(target=wrapped_function)
|
/external/python/oauth2client/oauth2client/contrib/ |
D | flask_util.py | 507 def curry_wrapper(wrapped_function): argument 508 @wraps(wrapped_function) 524 return wrapped_function(*args, **kwargs)
|
/external/tensorflow/tensorflow/python/eager/ |
D | wrap_function.py | 292 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/ |
D | deprecation.py | 113 def _wrap_decorator(wrapped_function): argument 130 return tf_decorator.make_decorator(wrapped_function, wrapper_func)
|