Searched refs:DasmError (Results 1 – 5 of 5) sorted by relevance
106 public Scanner(Reader i) throws IOException, DasmError { in Scanner()113 if (nextChar == -1) throw new DasmError("empty source file"); in Scanner()176 private char readUnicodeChar() throws IOException, DasmError { in readUnicodeChar()184 throw new DasmError("Invalid '\\u' escape sequence"); in readUnicodeChar()190 private char nameEscape() throws IOException, DasmError { in nameEscape()193 throw new DasmError("Only '\\u' escape sequence allowed in names"); in nameEscape()196 throw new DasmError("Left over '\\u' escape sequence"); in nameEscape()203 public token next_token() throws IOException, DasmError { in next_token()312 throw new DasmError( in next_token()331 protected token readQuotedString() throws IOException, DasmError { in readQuotedString()[all …]
22 public class DasmError extends Exception { class23 public DasmError() { in DasmError() method in DasmError27 public DasmError(String s) { in DasmError() method in DasmError
183 void throwDasmError(String msg) throws DasmError { in throwDasmError()184 throw new DasmError("Line " + line_num + ": " + msg); in throwDasmError()190 void addLineInfo(int line_num) throws DasmError { in addLineInfo()194 void addLine(int line_num) throws DasmError { in addLine()202 String sign, int var_num) throws DasmError { in addVar()207 String sign, int var_num) throws DasmError { in addVar()302 void setSignature(String str) throws DasmError { in setSignature()316 void addGenericAttr(String name, String file) throws DasmError { in addGenericAttr()346 throws DasmError { in beginField()354 void endField() throws DasmError { in endField()[all …]
91 } catch (DasmError e) { in assemble()
20 import dasm.DasmError;68 } catch(DasmError e) { in assemble()