Home
last modified time | relevance | path

Searched refs:step_collection (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/debuginfo-tests/dexter/dex/debugger/DebuggerControllers/
DDefaultController.py18 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)
DConditionalController.py42 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/
DTool.py136 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/
DDexExpectProgramState.py63 def eval(self, step_collection: DextIR) -> bool:
64 for step in step_collection.steps:
DDexExpectWatchBase.py167 def eval(self, step_collection): argument
168 for step in step_collection.steps:
/external/llvm-project/debuginfo-tests/dexter/dex/tools/clang_opt_bisect/
DTool.py91 step_collection = DextIR(
95 step_collection.commands = get_command_infos(
97 debugger_controller = DefaultController(self.context, step_collection)
142 steps = debugger_controller.step_collection