Home
last modified time | relevance | path

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

/external/llvm-project/debuginfo-tests/dexter/dex/dextIR/
DDextIR.py17 if (step.current_location.path is None or
18 not os.path.exists(step.current_location.path)):
21 if any(os.path.samefile(step.current_location.path, f)
106 if prev_step.current_location.lineno is None or step.current_location.lineno is None:
110 if prev_step.current_location.lineno > step.current_location.lineno:
113 if prev_step.current_location.lineno < step.current_location.lineno:
117 if prev_step.current_location.column > step.current_location.column:
120 if prev_step.current_location.column < step.current_location.column:
DStepIR.py99 def current_location(self): member in StepIR
/external/llvm-project/debuginfo-tests/dexter/dex/debugger/DebuggerControllers/
DControllerHelpers.py14 if not step_info.current_location.path:
16 if not os.path.exists(step_info.current_location.path):
18 return any(os.path.samefile(step_info.current_location.path, f) \
29 loc = step_info.current_location
DConditionalController.py112 loc = step_info.current_location
/external/llvm-project/debuginfo-tests/dexter/dex/command/commands/
DDexExpectStepOrder.py33 return {'DexExpectStepOrder': ValueIR(expression=str(step_info.current_location.lineno),
DDexExpectWatchBase.py169 loc = step.current_location
/external/llvm-project/debuginfo-tests/dexter/dex/heuristic/
DHeuristic.py205 msg = 'line {} reached'.format(x.current_location.lineno)