Home
last modified time | relevance | path

Searched refs:wrapped_func (Results 1 – 7 of 7) sorted by relevance

/external/autotest/client/cros/cellular/pseudomodem/
Dutils.py38 def wrapped_func(*args, **kwargs): function
42 return_cb_index = getattr(wrapped_func, '_logging_return_cb_index')
57 raise_cb_index = getattr(wrapped_func, '_logging_raise_cb_index')
88 wrapped_func._logging_return_cb_index = -1
89 wrapped_func._logging_raise_cb_index = -1
95 wrapped_func._logging_return_cb_index = args.index(return_cb_arg)
101 wrapped_func._logging_raise_cb_index = args.index(raise_cb_arg)
102 return wrapped_func
/external/tensorflow/tensorflow/python/data/experimental/ops/
Dscan_ops.py58 wrapped_func = dataset_ops.StructuredFunctionWrapper(
65 isinstance(wrapped_func.output_types, collections.Sequence) and
66 len(wrapped_func.output_types) == 2):
70 new_state_classes, self._output_classes = wrapped_func.output_classes
73 new_state_classes, output_classes = wrapped_func.output_classes
85 new_state_types, output_types = wrapped_func.output_types
96 new_state_shapes, output_shapes = wrapped_func.output_shapes
126 self._scan_func = wrapped_func
Dtake_while_ops.py34 wrapped_func = dataset_ops.StructuredFunctionWrapper(
39 if not wrapped_func.output_structure.is_compatible_with(
43 self._predicate = wrapped_func
Dgrouping.py299 wrapped_func = dataset_ops.StructuredFunctionWrapper(
308 nest.flatten(wrapped_func.output_classes),
314 (self._state_classes, wrapped_func.output_classes))
318 nest.flatten(wrapped_func.output_types), nest.flatten(state_types)):
323 (self._init_func.output_types, wrapped_func.output_types))
327 flat_new_state_shapes = nest.flatten(wrapped_func.output_shapes)
348 self._reduce_func = wrapped_func
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_tooltip.py27 def wrapped_func(*args, **kwargs): function
28 wrapped_func.call_args_list.append((args, kwargs))
30 wrapped_func.call_args_list = []
31 return wrapped_func
/external/tensorflow/tensorflow/python/data/ops/
Ddataset_ops.py1283 wrapped_func = StructuredFunctionWrapper(
1291 output_classes = wrapped_func.output_classes
1299 wrapped_func.output_classes))
1302 output_types = wrapped_func.output_types
1310 wrapped_func.output_types))
1313 output_shapes = wrapped_func.output_shapes
1340 reduce_func = wrapped_func.function
3186 wrapped_func = StructuredFunctionWrapper(
3191 if not wrapped_func.output_structure.is_compatible_with(
3195 wrapped_func.output_structure)
[all …]
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_unix_events.py1149 def wrapped_func(self): function
1163 return wrapped_func