Home
last modified time | relevance | path

Searched refs:CommandParseError (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/command/
H A DParseCommand.py18 from dex.utils.Exceptions import CommandParseError, NonFloatValueInCommand
36 from dex.utils.Exceptions import CommandParseError, DebuggerException
183 def format_unresolved_label_err(label: str, src: str, filename: str, lineno) -> CommandParseError:
184 err = CommandParseError()
193 err = CommandParseError()
201 def format_parse_err(msg: str, path: str, lines: list, point: TextPoint) -> CommandParseError:
202 err = CommandParseError()
221 err = CommandParseError()
236 err = CommandParseError()
373 except CommandParseError as e:
[all …]
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/utils/
H A DExceptions.py45 class CommandParseError(Dexception): class
49 super(CommandParseError, self).__init__(*args, **kwargs)
57 class NonFloatValueInCommand(CommandParseError):