Home
last modified time | relevance | path

Searched refs:update_wrapper (Results 1 – 25 of 25) sorted by relevance

/external/libchrome/third_party/jinja2/
Dasyncsupport.py15 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(
Dcompiler.py14 from functools import update_wrapper
71 return update_wrapper(new_func, f)
/external/python/jinja/src/jinja2/
Dasyncsupport.py4 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(
Dcompiler.py3 from functools import update_wrapper
44 return update_wrapper(new_func, f)
/external/mesa3d/src/mesa/swrast/
Ds_texrender.c30 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/
Dtermios.rs221 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/
Dfunctools.py17 def update_wrapper(wrapper, function
50 return partial(update_wrapper, wrapped=wrapped,
/external/python/cpython3/Lib/
Dfunctools.py35 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/
Dfunctools.rst108 .. 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/
Dtest_functools.py337 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)
Dtest_cpickle.py184 functools.update_wrapper(wrapper, func)
Dtest_xml_etree.py96 functools.update_wrapper(newtest, test)
/external/tensorflow/tensorflow/python/autograph/impl/
Dapi.py619 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/
Dtest_doctest.py2402 functools.update_wrapper(self, func)
Dtest_functools.py624 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)
Dpstats.pck24 …g���]/M?{(���u'���/home/gbr/devel/python/Lib/functools.pyi���u���update_wrapper(���i���i���…
77 …�>g�h㈵��>{(���u'���/home/gbr/devel/python/Lib/functools.pyi���u���update_wrapper(���i���i���…
Dtest_xml_etree.py111 functools.update_wrapper(newtest, test)
/external/python/cpython3/Doc/library/
Dfunctools.rst561 .. 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/
Dvariables.py1076 functools.update_wrapper(_run_op, tensor_oper)
/external/python/cpython2/Doc/whatsnew/
D2.5.rst174 ``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/
D2.5.rst174 ``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)
D3.4.rst2319 * :func:`functools.update_wrapper` and :func:`functools.wraps` now correctly
/external/rust/crates/nix/
DCHANGELOG.md155 - Removed `sys::termios::{get_libc_termios, get_libc_termios_mut, update_wrapper`
/external/python/cpython3/Misc/
DHISTORY4784 - 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/
DHISTORY759 - The functions update_wrapper() and wraps() have been added to the functools