Home
last modified time | relevance | path

Searched refs:exc2 (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Lib/unittest/test/
Dtest_runner.py56 exc2 = Exception('bar')
61 raise exc2
70 self.assertEqual((test2, Type2, instance2), (test, Exception, exc2))
/external/aac/libAACdec/src/
Dusacdec_acelp.cpp463 FIXP_DBL exc2[] /* (o) : post-processed excitation u(n) Q15 */ in BuildAdaptiveExcitation() argument
490 *exc2++ = tmp - cpe_code_smooth; in BuildAdaptiveExcitation()
506 *exc2++ = tmp - cpe_code_smooth; /* tmp - c_pe * g_sc * c(i+1) */ in BuildAdaptiveExcitation()
515 *exc2++ = tmp; in BuildAdaptiveExcitation()
746 FIXP_DBL *exc2; in CLpd_AcelpDecode() local
773 exc2 = (FIXP_DBL *)tmp_buf; in CLpd_AcelpDecode()
883 gain_code_smooth, period_fac, exc2); in CLpd_AcelpDecode()
896 exc2, /* (i) : input signal */ in CLpd_AcelpDecode()
/external/python/cpython3/Lib/unittest/test/
Dtest_runner.py51 exc2 = Exception('bar')
56 raise exc2
67 self.assertEqual((Type2, instance2), (Exception, exc2))
/external/python/cpython3/Lib/test/
Dtest_contextlib.py804 exc2 = Exception(2)
815 stack.enter_context(gets_the_context_right(exc2))
820 self.assertIs(exc.__context__.__context__, exc2)
834 exc2 = Exception(2)
841 stack.callback(raise_nested, exc2, exc3)
847 self.assertIs(exc.__context__.__context__.__context__, exc2)
Dtest_raise.py42 except IndexError as exc2:
43 self.assertIs(exc1, exc2)
/external/python/cpython3/Python/
Derrors.c399 PyObject *exc2, *val2, *tb2; in _PyErr_ChainExceptions() local
400 PyErr_Fetch(&exc2, &val2, &tb2); in _PyErr_ChainExceptions()
407 PyErr_NormalizeException(&exc2, &val2, &tb2); in _PyErr_ChainExceptions()
409 PyErr_Restore(exc2, val2, tb2); in _PyErr_ChainExceptions()
Dceval.c2974 PyObject *tp2, *exc2, *tb2; in _PyEval_EvalFrameDefault() local
2979 exc2 = PEEK(5); in _PyEval_EvalFrameDefault()
2983 SET_VALUE(6, exc2); in _PyEval_EvalFrameDefault()
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py2869 exc2 = RuntimeError()
2875 d.set_exception(exc2)
2879 self.assertEqual(fut.result(), [3, 1, exc, exc2])
/external/owasp/sanitizer/tools/findbugs/lib/
Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/ ...
/external/guice/extensions/persist/lib/
Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/ ...
/external/antlr/runtime/ActionScript/project/lib/
DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/ ...
/external/scapy/test/
Dregression.uts8019 except Exception as exc2:
8020 rc = isinstance(exc2, type(_exc1))
8390 except Exception as exc2:
8391 rc = isinstance(exc2, type(exc1))