/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/ |
D | handler.py | 32 def error(self, exception): argument 34 raise exception 36 def fatalError(self, exception): argument 38 raise exception 40 def warning(self, exception): argument 42 print exception
|
D | _exceptions.py | 19 def __init__(self, msg, exception=None): argument 23 self._exception = exception 59 def __init__(self, msg, exception, locator): argument 61 SAXException.__init__(self, msg, exception)
|
D | saxutils.py | 213 def error(self, exception): argument 214 self._err_handler.error(exception) 216 def fatalError(self, exception): argument 217 self._err_handler.fatalError(exception) 219 def warning(self, exception): argument 220 self._err_handler.warning(exception)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/sax/ |
D | handler.py | 32 def error(self, exception): argument 34 raise exception 36 def fatalError(self, exception): argument 38 raise exception 40 def warning(self, exception): argument 42 print exception
|
D | _exceptions.py | 19 def __init__(self, msg, exception=None): argument 23 self._exception = exception 59 def __init__(self, msg, exception, locator): argument 61 SAXException.__init__(self, msg, exception)
|
D | saxutils.py | 185 def error(self, exception): argument 186 self._err_handler.error(exception) 188 def fatalError(self, exception): argument 189 self._err_handler.fatalError(exception) 191 def warning(self, exception): argument 192 self._err_handler.warning(exception)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/ |
D | client.py | 87 exception, value, rid = self._vrecv(id) 90 if exception is None: 92 x = exception 93 if hasattr(__builtin__, exception): 94 x = getattr(__builtin__, exception) 95 elif exception in ('posix.error', 'mac.error'): 97 if x == exception: 98 exception = x 99 raise exception, value
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | errors.c | 53 PyErr_SetObject(PyObject *exception, PyObject *value) in PyErr_SetObject() argument 55 Py_XINCREF(exception); in PyErr_SetObject() 57 PyErr_Restore(exception, value, (PyObject *)NULL); in PyErr_SetObject() 61 PyErr_SetNone(PyObject *exception) in PyErr_SetNone() argument 63 PyErr_SetObject(exception, (PyObject *)NULL); in PyErr_SetNone() 67 PyErr_SetString(PyObject *exception, const char *string) in PyErr_SetString() argument 70 PyErr_SetObject(exception, value); in PyErr_SetString() 110 PyObject *exception, *value, *tb; in PyErr_GivenExceptionMatches() local 111 PyErr_Fetch(&exception, &value, &tb); in PyErr_GivenExceptionMatches() 124 PyErr_Restore(exception, value, tb); in PyErr_GivenExceptionMatches() [all …]
|
D | pythonrun.c | 1080 PyObject *exception, *value, *tb; in handle_system_exit() local 1088 PyErr_Fetch(&exception, &value, &tb); in handle_system_exit() 1125 PyErr_Restore(exception, value, tb); in handle_system_exit() 1134 PyObject *exception, *v, *tb, *hook; in PyErr_PrintEx() local 1139 PyErr_Fetch(&exception, &v, &tb); in PyErr_PrintEx() 1140 if (exception == NULL) in PyErr_PrintEx() 1142 PyErr_NormalizeException(&exception, &v, &tb); in PyErr_PrintEx() 1143 if (exception == NULL) in PyErr_PrintEx() 1147 PySys_SetObject("last_type", exception); in PyErr_PrintEx() 1154 exception, v, tb ? tb : Py_None); in PyErr_PrintEx() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | errors.c | 53 PyErr_SetObject(PyObject *exception, PyObject *value) in PyErr_SetObject() argument 55 Py_XINCREF(exception); in PyErr_SetObject() 57 PyErr_Restore(exception, value, (PyObject *)NULL); in PyErr_SetObject() 61 PyErr_SetNone(PyObject *exception) in PyErr_SetNone() argument 63 PyErr_SetObject(exception, (PyObject *)NULL); in PyErr_SetNone() 67 PyErr_SetString(PyObject *exception, const char *string) in PyErr_SetString() argument 70 PyErr_SetObject(exception, value); in PyErr_SetString() 110 PyObject *exception, *value, *tb; in PyErr_GivenExceptionMatches() local 111 PyErr_Fetch(&exception, &value, &tb); in PyErr_GivenExceptionMatches() 126 PyErr_Restore(exception, value, tb); in PyErr_GivenExceptionMatches() [all …]
|
D | pythonrun.c | 1105 PyObject *exception, *value, *tb; in handle_system_exit() local 1113 PyErr_Fetch(&exception, &value, &tb); in handle_system_exit() 1150 PyErr_Restore(exception, value, tb); in handle_system_exit() 1159 PyObject *exception, *v, *tb, *hook; in PyErr_PrintEx() local 1164 PyErr_Fetch(&exception, &v, &tb); in PyErr_PrintEx() 1165 if (exception == NULL) in PyErr_PrintEx() 1167 PyErr_NormalizeException(&exception, &v, &tb); in PyErr_PrintEx() 1168 if (exception == NULL) in PyErr_PrintEx() 1172 PySys_SetObject("last_type", exception); in PyErr_PrintEx() 1179 exception, v, tb ? tb : Py_None); in PyErr_PrintEx() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | cgitb.py | 173 exception = ['<p>%s: %s' % (strong(pydoc.html.escape(str(etype))), 179 exception.append('\n<br>%s%s =\n%s' % (indent, name, value)) 181 return head + ''.join(frames) + ''.join(exception) + ''' 245 exception = ['%s: %s' % (str(etype), str(evalue))] 249 exception.append('\n%s%s = %s' % (" "*4, name, value)) 251 return head + ''.join(frames) + ''.join(exception) + '''
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/ |
D | pulldom.py | 203 def warning(self, exception): argument 204 print exception 205 def error(self, exception): argument 206 raise exception 207 def fatalError(self, exception): argument 208 raise exception
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/ |
D | pulldom.py | 203 def warning(self, exception): argument 204 print exception 205 def error(self, exception): argument 206 raise exception 207 def fatalError(self, exception): argument 208 raise exception
|
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/ |
D | softfloat.txt | 167 All five exception flags required by the IEC/IEEE Standard are 169 `float_exception_flags'. The positions of the exception flag bits within 172 `float_flag_invalid'. The exception flags variable is initialized to all 0, 175 An individual exception flag can be cleared with the statement 177 float_exception_flags &= ~ float_flag_<exception>; 179 where `<exception>' is the appropriate name. To raise a floating-point 180 exception, the SoftFloat function `float_raise' should be used (see below). 224 Conversions from floating-point to integer raise the invalid exception if 322 functions raise the invalid exception if either input is any kind of NaN. 324 exception on quiet NaNs. For completeness, SoftFloat provides the following [all …]
|
D | softfloat-specialize | 159 exception is raised. 191 signaling NaN, the invalid exception is raised. 261 exception is raised. 296 signaling NaN, the invalid exception is raised. 366 invalid exception is raised. 401 `b' is a signaling NaN, the invalid exception is raised. 471 exception is raised. 505 `b' is a signaling NaN, the invalid exception is raised.
|
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/templates/ |
D | softfloat-specialize | 102 exception is raised. 134 signaling NaN, the invalid exception is raised. 196 exception is raised. 231 signaling NaN, the invalid exception is raised. 301 invalid exception is raised. 336 `b' is a signaling NaN, the invalid exception is raised. 406 exception is raised. 440 `b' is a signaling NaN, the invalid exception is raised.
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_format.py | 241 def test_exc(formatstr, args, exception, excmsg): argument 244 except exception, exc: 250 print 'Unexpected ', exception, ':', repr(str(exc))
|
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/ |
D | softfloat-specialize | 155 exception is raised. 187 signaling NaN, the invalid exception is raised. 257 exception is raised. 292 signaling NaN, the invalid exception is raised. 362 invalid exception is raised. 397 `b' is a signaling NaN, the invalid exception is raised. 467 exception is raised. 501 `b' is a signaling NaN, the invalid exception is raised.
|
/device/linaro/bootloader/edk2/DuetPkg/BootSector/ |
D | efi32.S | 50 # Populate IDT with meaningful offsets for exception handlers... 60 LOOP_1: # loop through all IDT entries exception handlers a… 73 #@@: ; loop through all IDT entries exception handlers …
|
D | efi64.S | 61 # Populate IDT with meaningful offsets for exception handlers... 74 LOOP_1: # loop through all IDT entries exception handlers a… 88 #@@: ; loop through all IDT entries exception handlers …
|
D | efi32.asm | 52 ; Populate IDT with meaningful offsets for exception handlers... 62 @@: ; loop through all IDT entries exception handlers a… 75 ;@@: ; loop through all IDT entries exception handlers …
|
/device/linaro/bootloader/arm-trusted-firmware/docs/ |
D | interrupt-framework-design.md | 58 non-secure software (Non-secure interrupts) to the last executed exception 60 exception levels lower than EL3. This could be done with or without the 80 the exception level(s) it is handled in. 108 exception level of an interrupt type is configured through the FIQ and IRQ bits 114 state prior to entry into a lower exception level in that security state. 117 its target exception level for each security state. It is represented by a 259 Secure Payload (SP) software which runs in exception levels lower than EL3 261 between software running in secure and non-secure states at exception 305 exception level when the interrupt was generated. A value of `1` means 344 prior to entry into a lower exception level in either security state. The [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/ |
D | loader.py | 27 def _make_failed_load_tests(name, exception, suiteClass): argument 28 return _make_failed_test('LoadTestsFailure', name, exception, suiteClass) 30 def _make_failed_test(classname, methodname, exception, suiteClass): argument 32 raise exception
|
D | suite.py | 192 def _addClassOrModuleLevelException(self, result, exception, errorName): argument 195 if addSkip is not None and isinstance(exception, case.SkipTest): 196 addSkip(error, str(exception))
|