Home | History | Annotate | Download | only in mterp

Lines Matching refs:DataParseError

45 class DataParseError(SyntaxError):
62 raise DataParseError("handler-style requires one argument")
65 raise DataParseError("handler-style (%s) invalid" % style)
78 raise DataParseError("handler-size requires one argument")
80 raise DataParseError("handler-size may only be set once")
90 raise DataParseError("handler-size (%d) must be power of 2" \
100 raise DataParseError("import requires one argument")
107 raise DataParseError("don't know how to import %s (expecting .cpp/.S)"
119 raise DataParseError("import requires one argument")
125 raise DataParseError("unable to load asm-stub: %s" % str(err))
137 raise DataParseError("import requires one argument")
149 raise DataParseError("opStart takes a directory name argument")
151 raise DataParseError("opStart can only be specified once")
162 raise DataParseError("alt requires exactly two arguments")
164 raise DataParseError("alt statements must be between opStart/opEnd")
168 raise DataParseError("unknown opcode %s" % tokens[1])
182 raise DataParseError("op requires exactly two arguments")
184 raise DataParseError("op statements must be between opStart/opEnd")
188 raise DataParseError("unknown opcode %s" % tokens[1])
215 raise DataParseError("opEnd takes no arguments")
217 raise DataParseError("opEnd must follow opStart, and only appear once")
230 raise DataParseError("alt-op can be specified only after op-end")
232 raise DataParseError("opEnd takes no arguments")
447 raise DataParseError("malformed %%include in %s" % source)
451 raise DataParseError("self-referential %%include in %s"
465 raise DataParseError("malformed %%default in %s" % source)
488 raise DataParseError("keyword substitution failed in %s: %s"
612 raise DataParseError, "unrecognized command '%s'" % tokens[0]
615 raise DataParseError, "handler-style must be first command"
616 except DataParseError, err: