/external/libchrome/third_party/jinja2/ |
D | asyncsupport.py | 15 from functools import update_wrapper 55 return update_wrapper(generate, original_generate) 79 return update_wrapper(render, original_render) 96 return update_wrapper(__call__, original_call) 112 return update_wrapper(_invoke, original_invoke) 144 Template.generate_async = update_wrapper( 146 Template.render_async = update_wrapper( 152 Template.make_module_async = update_wrapper(
|
D | compiler.py | 14 from functools import update_wrapper 71 return update_wrapper(new_func, f)
|
/external/python/jinja/src/jinja2/ |
D | asyncsupport.py | 4 from functools import update_wrapper 49 return update_wrapper(generate, original_generate) 72 return update_wrapper(render, original_render) 89 return update_wrapper(__call__, original_call) 106 return update_wrapper(_invoke, original_invoke) 139 Template.generate_async = update_wrapper(generate_async, Template.generate_async) 140 Template.render_async = update_wrapper(render_async, Template.render_async) 144 Template.make_module_async = update_wrapper(
|
D | compiler.py | 3 from functools import update_wrapper 44 return update_wrapper(new_func, f)
|
/external/mesa3d/src/mesa/swrast/ |
D | s_texrender.c | 30 update_wrapper(struct gl_context *ctx, struct gl_renderbuffer_attachment *att) in update_wrapper() function 88 update_wrapper(ctx, att); in _swrast_render_texture()
|
/external/rust/crates/nix/src/sys/ |
D | termios.rs | 221 pub(crate) fn update_wrapper(&mut self) { in update_wrapper() method 903 termios.update_wrapper(); 914 termios.update_wrapper(); 926 termios.update_wrapper(); 957 termios.update_wrapper(); 968 termios.update_wrapper(); 980 termios.update_wrapper(); 997 termios.update_wrapper(); in cfmakeraw() 1010 termios.update_wrapper(); in cfmakesane()
|
/external/python/cpython2/Lib/ |
D | functools.py | 17 def update_wrapper(wrapper, function 50 return partial(update_wrapper, wrapped=wrapped,
|
/external/python/cpython3/Lib/ |
D | functools.py | 35 def update_wrapper(wrapper, function 76 return partial(update_wrapper, wrapped=wrapped, 512 return update_wrapper(wrapper, user_function) 520 return update_wrapper(wrapper, user_function) 885 update_wrapper(wrapper, func) 918 update_wrapper(_method, self.func)
|
/external/python/cpython2/Doc/library/ |
D | functools.rst | 108 .. function:: update_wrapper(wrapper, wrapped[, assigned][, updated]) 129 This is a convenience function for invoking :func:`update_wrapper` as a 131 ``partial(update_wrapper, wrapped=wrapped, assigned=assigned, updated=updated)``.
|
/external/python/cpython2/Lib/test/ |
D | test_functools.py | 337 functools.update_wrapper(wrapper, f) 359 functools.update_wrapper(wrapper, f, (), ()) 375 functools.update_wrapper(wrapper, f, assign, update) 387 functools.update_wrapper(wrapper, max)
|
D | test_cpickle.py | 184 functools.update_wrapper(wrapper, func)
|
D | test_xml_etree.py | 96 functools.update_wrapper(newtest, test)
|
/external/tensorflow/tensorflow/python/autograph/impl/ |
D | api.py | 619 wrapper = functools.update_wrapper(wrapper, func) 667 wrapper = functools.update_wrapper(wrapper, func) 719 wrapper = functools.update_wrapper(wrapper, f)
|
/external/python/cpython3/Lib/test/ |
D | test_doctest.py | 2402 functools.update_wrapper(self, func)
|
D | test_functools.py | 624 functools.update_wrapper(wrapper, f) 650 functools.update_wrapper(wrapper, f, (), ()) 668 functools.update_wrapper(wrapper, f, assign, update) 685 functools.update_wrapper(wrapper, f, assign, update) 691 functools.update_wrapper(wrapper, f, assign, update) 694 functools.update_wrapper(wrapper, f, assign, update) 703 functools.update_wrapper(wrapper, max)
|
D | pstats.pck | 24 …g���]/M?{(u'/home/gbr/devel/python/Lib/functools.pyiuupdate_wrapper(ii… 77 …�>g�h㈵��>{(u'/home/gbr/devel/python/Lib/functools.pyiuupdate_wrapper(ii…
|
D | test_xml_etree.py | 111 functools.update_wrapper(newtest, test)
|
/external/python/cpython3/Doc/library/ |
D | functools.rst | 561 .. function:: update_wrapper(wrapper, wrapped, assigned=WRAPPER_ASSIGNMENTS, updated=WRAPPER_UPDATE… 584 :func:`update_wrapper` may be used with callables other than functions. Any 607 This is a convenience function for invoking :func:`update_wrapper` as a 609 ``partial(update_wrapper, wrapped=wrapped, assigned=assigned, updated=updated)``.
|
/external/tensorflow/tensorflow/python/ops/ |
D | variables.py | 1076 functools.update_wrapper(_run_op, tensor_oper)
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.5.rst | 174 ``update_wrapper(wrapper, wrapped)`` function that helps you write 175 well-behaved decorators. :func:`update_wrapper` copies the name, module, and 183 functools.update_wrapper(wrapper, f)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.5.rst | 174 ``update_wrapper(wrapper, wrapped)`` function that helps you write 175 well-behaved decorators. :func:`update_wrapper` copies the name, module, and 183 functools.update_wrapper(wrapper, f)
|
D | 3.4.rst | 2319 * :func:`functools.update_wrapper` and :func:`functools.wraps` now correctly
|
/external/rust/crates/nix/ |
D | CHANGELOG.md | 155 - Removed `sys::termios::{get_libc_termios, get_libc_termios_mut, update_wrapper`
|
/external/python/cpython3/Misc/ |
D | HISTORY | 4784 - Issue #17482: functools.update_wrapper (and functools.wraps) now set the 12501 - Issue #9567: functools.update_wrapper now adds a __wrapped__ attribute 12504 - Issue #3445: functools.update_wrapper now tolerates missing attributes on 12558 functools.update_wrapper. Patch by Terrence Cole. 18143 - The functions update_wrapper() and wraps() have been added to the functools
|
/external/python/cpython2/Misc/ |
D | HISTORY | 759 - The functions update_wrapper() and wraps() have been added to the functools
|