Searched refs:user_function (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Lib/ |
D | reprlib.py | 12 def decorating_function(user_function): argument 21 result = user_function(self) 27 wrapper.__module__ = getattr(user_function, '__module__') 28 wrapper.__doc__ = getattr(user_function, '__doc__') 29 wrapper.__name__ = getattr(user_function, '__name__') 30 wrapper.__qualname__ = getattr(user_function, '__qualname__') 31 wrapper.__annotations__ = getattr(user_function, '__annotations__', {})
|
D | functools.py | 509 user_function, maxsize = maxsize, 128 510 wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo) 512 return update_wrapper(wrapper, user_function) 517 def decorating_function(user_function): argument 518 wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo) 520 return update_wrapper(wrapper, user_function) 524 def _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo): argument 545 result = user_function(*args, **kwds) 559 result = user_function(*args, **kwds) 583 result = user_function(*args, **kwds) [all …]
|
D | dataclasses.py | 358 def _recursive_repr(user_function): argument 363 @functools.wraps(user_function) 370 result = user_function(self)
|
D | ssl.py | 656 return inner.user_function 694 inner.user_function = callback
|
/external/yapf/yapf/yapflib/ |
D | py3compat.py | 57 def fake_wrapper(user_function): argument 58 return user_function
|
/external/llvm-project/clang/test/Index/ |
D | retain-comments-from-system-headers.c | 9 int user_function(int a);
|
/external/clang/test/Index/ |
D | retain-comments-from-system-headers.c | 9 int user_function(int a);
|
/external/python/cpython3/Doc/library/ |
D | functools.rst | 29 .. decorator:: cache(user_function) 126 .. decorator:: lru_cache(user_function) 141 If *user_function* is specified, it must be a callable. This allows the 230 Added the *user_function* option.
|
/external/llvm/test/Bindings/OCaml/ |
D | core.ml | 604 let fn = define_function "user_function" ty m in
|
/external/llvm-project/llvm/test/Bindings/OCaml/ |
D | core.ml | 658 let fn = define_function "user_function" ty m in
|