Searched refs:step_collection (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/debuginfo-tests/dexter/dex/debugger/DebuggerControllers/ |
D | DefaultController.py | 18 def __init__(self, context, step_collection): argument 20 self.step_collection = step_collection 36 self.step_collection.debugger = self.debugger.debugger_info 40 for command_obj in chain.from_iterable(self.step_collection.commands.values()): 55 update_step_watches(step_info, self.watches, self.step_collection.commands) 56 self.step_collection.new_step(self.context, step_info)
|
D | ConditionalController.py | 42 def __init__(self, context, step_collection): argument 44 self.step_collection = step_collection 54 commands = self.step_collection.commands 94 self.step_collection.clear_steps() 97 for command_obj in chain.from_iterable(self.step_collection.commands.values()): 109 update_step_watches(step_info, self._watches, self.step_collection.commands) 110 self.step_collection.new_step(self.context, step_info)
|
/external/llvm-project/debuginfo-tests/dexter/dex/tools/test/ |
D | Tool.py | 136 step_collection = DextIR( 141 step_collection.commands = get_command_infos( 144 if 'DexLimitSteps' in step_collection.commands: 145 debugger_controller = ConditionalController(self.context, step_collection) 147 debugger_controller = DefaultController(self.context, step_collection) 157 steps = debugger_controller.step_collection
|
/external/llvm-project/debuginfo-tests/dexter/dex/command/commands/ |
D | DexExpectProgramState.py | 63 def eval(self, step_collection: DextIR) -> bool: 64 for step in step_collection.steps:
|
D | DexExpectWatchBase.py | 167 def eval(self, step_collection): argument 168 for step in step_collection.steps:
|
/external/llvm-project/debuginfo-tests/dexter/dex/tools/clang_opt_bisect/ |
D | Tool.py | 91 step_collection = DextIR( 95 step_collection.commands = get_command_infos( 97 debugger_controller = DefaultController(self.context, step_collection) 142 steps = debugger_controller.step_collection
|