Searched refs:user_function (Results 1 – 9 of 9) 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 | 479 def decorating_function(user_function): argument 480 wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo) 481 return update_wrapper(wrapper, user_function) 485 def _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo): argument 506 result = user_function(*args, **kwds) 520 result = user_function(*args, **kwds) 544 result = user_function(*args, **kwds)
|
D | dataclasses.py | 345 def _recursive_repr(user_function): argument 350 @functools.wraps(user_function) 357 result = user_function(self)
|
/external/tensorflow/tensorflow/python/framework/ |
D | registry.py | 69 user_function = stack[stack_index] 70 location_tag = tf_stack.convert_stack([user_function])[0]
|
/external/yapf/yapf/yapflib/ |
D | py3compat.py | 57 def fake_wrapper(user_function): argument 58 return user_function
|
/external/clang/test/Index/ |
D | retain-comments-from-system-headers.c | 9 int user_function(int a);
|
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/ |
D | vmcore.ml | 522 let fn = define_function "user_function" ty m in
|
/external/llvm/test/Bindings/OCaml/ |
D | core.ml | 604 let fn = define_function "user_function" ty m in
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bindings/OCaml/ |
D | core.ml | 650 let fn = define_function "user_function" ty m in
|