Home
last modified time | relevance | path

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

/external/libmojo/mojo/public/js/test/
Dvalidation_test_input_parser.js16 function InputError(message, line) { class
21 InputError.prototype.toString = function() { class
86 throw new InputError('invalid item', this);
90 throw new InputError('invalid item type', this);
147 throw new InputError('invalid item value', item.line);
153 throw new InputError("can't parse item value", item.line);
198 throw new InputError('unrecognized item type', item.line);
204 throw new InputError('invalid byte item value', item.line);
214 throw new InputError('duplicate distance item', item.line);
221 throw new InputError('unmatched anchor item', item.line);
[all …]
/external/regex-re2/re2/testing/
Dunicode_test.py26 self.assertRaises(unicode.InputError, unicode._UInt, "263")
27 self.assertRaises(unicode.InputError, unicode._UInt, "263AAAA")
28 self.assertRaises(unicode.InputError, unicode._UInt, "110000")
33 self.assertRaises(unicode.InputError, unicode._URange, "0001..0003..0005")
34 self.assertRaises(unicode.InputError, unicode._URange, "0003..0001")
35 self.assertRaises(unicode.InputError, unicode._URange, "0001..0001")
40 self.assertRaises(unicode.InputError, unicode._UStr, 0x110000)
41 self.assertRaises(unicode.InputError, unicode._UStr, -1)
116 self.assertRaises(unicode.InputError, StringTable, _UNICODE_TABLE, 4, Abort)
117 self.assertRaises(unicode.InputError, StringTable, _UNICODE_TABLE, 2, Abort)
[all …]
/external/regex-re2/re2/
Dunicode.py22 class InputError(Error): class
44 raise InputError("invalid Unicode value %s" % (s,))
71 raise InputError("invalid Unicode range %s" % (s,))
89 raise InputError("invalid Unicode value %s" % (v,))
148 raise InputError("invalid number of fields %d" % (nfields,))
176 raise InputError("wrong number of fields %d %d - %s" %
192 raise InputError("expected Last line for %s" %
203 raise InputError("bad First line: range given")
215 raise InputError("expected Last line for %s; got EOF" %
/external/autotest/site_utils/tester_feedback/
Dinput_handlers.py8 class InputError(Exception): class
103 raise InputError
145 raise InputError
Dsequenced_request.py56 except input_handlers.InputError:
/external/libmojo/mojo/public/js/
Dvalidation_unittests.js144 if (e instanceof parser.InputError)
/external/python/cpython2/Doc/tutorial/
Derrors.rst291 class InputError(Error):