Searched refs:user_function (Results 1 – 15 of 15) 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 | 510 user_function, maxsize = maxsize, 128 511 wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo) 513 return update_wrapper(wrapper, user_function) 518 def decorating_function(user_function): argument 519 wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo) 521 return update_wrapper(wrapper, user_function) 525 def _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo): argument 546 result = user_function(*args, **kwds) 560 result = user_function(*args, **kwds) 584 result = user_function(*args, **kwds) [all …]
|
| D | dataclasses.py | 393 def _recursive_repr(user_function): argument 398 @functools.wraps(user_function) 405 result = user_function(self)
|
| D | ssl.py | 673 return inner.user_function 711 inner.user_function = callback
|
| /external/yapf/yapf/yapflib/ |
| D | py3compat.py | 60 def fake_wrapper(user_function): argument 61 return user_function
|
| /external/clang/test/Index/ |
| D | retain-comments-from-system-headers.c | 9 int user_function(int a);
|
| /external/python/cachetools/docs/ |
| D | index.rst | 465 If a `user_function` is specified instead, it must be a callable. 486 .. decorator:: fifo_cache(user_function) 493 .. decorator:: lfu_cache(user_function) 500 .. decorator:: lru_cache(user_function) 507 .. decorator:: mru_cache(user_function) 514 .. decorator:: rr_cache(user_function) 521 .. decorator:: ttl_cache(user_function)
|
| /external/python/cpython3/Doc/library/ |
| D | functools.rst | 29 .. decorator:: cache(user_function) 136 .. decorator:: lru_cache(user_function) 151 If *user_function* is specified, it must be a callable. This allows the 249 Added the *user_function* option.
|
| /external/python/cachetools/ |
| D | CHANGELOG.rst | 64 - Support ``user_function`` with ``cachetools.func`` decorators
|
| /external/llvm/test/Bindings/OCaml/ |
| D | core.ml | 604 let fn = define_function "user_function" ty m in
|
| /external/libbpf/.github/actions/build-selftests/ |
| D | vmlinux.h | 63881 acpi_walk_callback user_function; member
|
| /external/bcc/libbpf-tools/arm64/ |
| D | vmlinux.h | 69801 acpi_walk_callback user_function; member
|
| D | vmlinux_510.h | 69801 acpi_walk_callback user_function; member
|
| /external/bcc/libbpf-tools/x86/ |
| D | vmlinux_505.h | 64772 acpi_walk_callback user_function; member
|
| D | vmlinux.h | 64772 acpi_walk_callback user_function; member
|