Searched refs:wrapped_func (Results 1 – 8 of 8) sorted by relevance
/external/autotest/client/cros/cellular/pseudomodem/ |
D | utils.py | 38 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/ |
D | scan_ops.py | 51 wrapped_func = dataset_ops.StructuredFunctionWrapper( 57 if not (isinstance(wrapped_func.output_types, collections_abc.Sequence) 58 and len(wrapped_func.output_types) == 2): 62 new_state_classes, self._output_classes = wrapped_func.output_classes 65 new_state_classes, output_classes = wrapped_func.output_classes 79 new_state_types, output_types = wrapped_func.output_types 92 new_state_shapes, output_shapes = wrapped_func.output_shapes 124 self._scan_func = wrapped_func
|
D | take_while_ops.py | 34 wrapped_func = dataset_ops.StructuredFunctionWrapper( 39 if not wrapped_func.output_structure.is_compatible_with( 43 self._predicate = wrapped_func
|
D | grouping.py | 325 wrapped_func = dataset_ops.StructuredFunctionWrapper( 333 nest.flatten(wrapped_func.output_classes), 339 (self._state_classes, wrapped_func.output_classes)) 343 nest.flatten(wrapped_func.output_types), nest.flatten(state_types)): 348 (self._init_func.output_types, wrapped_func.output_types)) 352 flat_new_state_shapes = nest.flatten(wrapped_func.output_shapes) 373 self._reduce_func = wrapped_func
|
D | io.py | 94 wrapped_func = dataset_ops.StructuredFunctionWrapper( 107 shard_func = wrapped_func.function
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_tooltip.py | 31 def wrapped_func(*args, **kwargs): function 32 wrapped_func.call_args_list.append((args, kwargs)) 34 wrapped_func.call_args_list = [] 35 return wrapped_func
|
/external/tensorflow/tensorflow/python/data/ops/ |
D | dataset_ops.py | 2143 wrapped_func = StructuredFunctionWrapper( 2150 output_classes = wrapped_func.output_classes 2160 (state_classes, wrapped_func.output_classes)) 2163 output_types = wrapped_func.output_types 2173 (state_types, wrapped_func.output_types)) 2176 output_shapes = wrapped_func.output_shapes 2205 reduce_func = wrapped_func.function 4532 wrapped_func = StructuredFunctionWrapper( 4537 if not wrapped_func.output_structure.is_compatible_with( 4541 wrapped_func.output_structure) [all …]
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_unix_events.py | 1189 def wrapped_func(self): function 1203 return wrapped_func
|