Home
last modified time | relevance | path

Searched defs:exc (Results 1 – 25 of 269) sorted by relevance

1234567891011

/external/freetype/src/truetype/
Dttinterp.c1512 Current_Ratio( TT_ExecContext exc ) in Current_Ratio()
1539 Current_Ppem( TT_ExecContext exc ) in Current_Ppem()
1546 Current_Ppem_Stretched( TT_ExecContext exc ) in Current_Ppem_Stretched()
1560 Read_CVT( TT_ExecContext exc, in Read_CVT()
1568 Read_CVT_Stretched( TT_ExecContext exc, in Read_CVT_Stretched()
1576 Write_CVT( TT_ExecContext exc, in Write_CVT()
1585 Write_CVT_Stretched( TT_ExecContext exc, in Write_CVT_Stretched()
1594 Move_CVT( TT_ExecContext exc, in Move_CVT()
1603 Move_CVT_Stretched( TT_ExecContext exc, in Move_CVT_Stretched()
1628 GetShortIns( TT_ExecContext exc ) in GetShortIns()
[all …]
/external/python/cpython3/Lib/test/
Dtest_codeccallbacks.py14 def handle(self, exc): argument
87 def xmlcharnamereplace(exc): argument
118 def uninamereplace(exc): argument
173 def relaxedutf8(exc): argument
215 def handler1(exc): argument
227 def handler2(exc): argument
787 def unencrepl(exc): argument
836 def baddecodereturn1(exc): argument
846 def baddecodereturn2(exc): argument
895 def badencodereturn1(exc): argument
[all …]
Dmultibytecodec_support.py89 def xmlcharnamereplace(exc): argument
111 def myreplace(exc): argument
118 def myreplace(exc): argument
127 def myreplace(exc): argument
133 def myreplace(exc): argument
140 def myreplace(exc): argument
147 def myreplace(exc): argument
160 def myreplace(exc): argument
167 def myreplace(exc): argument
220 def tempreplace(exc): argument
Dtest_contextlib.py383 exc = None variable in mycontext
390 def __exit__(self, *exc):
490 def __exit__(self, *exc):
502 def __uxit__(self, *exc):
513 exc = None variable in TestContextDecorator.test_contextdecorator_as_mixin.somecontext
519 def __exit__(self, *exc):
612 def _expect_exc(exc_type, exc, exc_tb): argument
616 def _expect_ok(exc_type, exc, exc_tb): argument
702 def __init__(self, exc): argument
748 def raise_exc(exc): argument
[all …]
/external/python/cpython2/Lib/test/
Dmultibytecodec_support.py82 def xmlcharnamereplace(exc): argument
104 def myreplace(exc): argument
113 def myreplace(exc): argument
119 def myreplace(exc): argument
126 def myreplace(exc): argument
133 def myreplace(exc): argument
146 def myreplace(exc): argument
153 def myreplace(exc): argument
206 def tempreplace(exc): argument
Dtest_codeccallbacks.py10 def handle(self, exc): argument
102 def xmlcharnamereplace(exc): argument
133 def uninamereplace(exc): argument
180 def relaxedutf8(exc): argument
231 def handler_unicodeinternal(exc): argument
254 def handler1(exc): argument
263 def handler2(exc): argument
658 def unencrepl(exc): argument
708 def baddecodereturn1(exc): argument
718 def baddecodereturn2(exc): argument
[all …]
/external/python/cpython2/Python/
Derrors.c85 PyErr_GivenExceptionMatches(PyObject *err, PyObject *exc) in PyErr_GivenExceptionMatches()
135 PyErr_ExceptionMatches(PyObject *exc) in PyErr_ExceptionMatches()
145 PyErr_NormalizeException(PyObject **exc, PyObject **val, PyObject **tb) in PyErr_NormalizeException()
268 _PyErr_ReplaceException(PyObject *exc, PyObject *val, PyObject *tb) in _PyErr_ReplaceException()
313 PyErr_SetFromErrnoWithFilenameObject(PyObject *exc, PyObject *filenameObject) in PyErr_SetFromErrnoWithFilenameObject()
393 PyErr_SetFromErrnoWithFilename(PyObject *exc, const char *filename) in PyErr_SetFromErrnoWithFilename()
403 PyErr_SetFromErrnoWithUnicodeFilename(PyObject *exc, const Py_UNICODE *filename) in PyErr_SetFromErrnoWithUnicodeFilename()
415 PyErr_SetFromErrno(PyObject *exc) in PyErr_SetFromErrno()
423 PyObject *exc, in PyErr_SetExcFromWindowsErrWithFilenameObject()
470 PyObject *exc, in PyErr_SetExcFromWindowsErrWithFilename()
[all …]
Dcodecs.c597 static void wrong_exception_type(PyObject *exc) in wrong_exception_type()
616 PyObject *PyCodec_StrictErrors(PyObject *exc) in PyCodec_StrictErrors()
627 PyObject *PyCodec_IgnoreErrors(PyObject *exc) in PyCodec_IgnoreErrors()
652 PyObject *PyCodec_ReplaceErrors(PyObject *exc) in PyCodec_ReplaceErrors()
705 PyObject *PyCodec_XMLCharRefReplaceErrors(PyObject *exc) in PyCodec_XMLCharRefReplaceErrors()
830 PyObject *PyCodec_BackslashReplaceErrors(PyObject *exc) in PyCodec_BackslashReplaceErrors()
907 static PyObject *strict_errors(PyObject *self, PyObject *exc) in strict_errors()
914 static PyObject *ignore_errors(PyObject *self, PyObject *exc) in ignore_errors()
920 static PyObject *replace_errors(PyObject *self, PyObject *exc) in replace_errors()
926 static PyObject *xmlcharrefreplace_errors(PyObject *self, PyObject *exc) in xmlcharrefreplace_errors()
[all …]
/external/python/cpython2/Objects/
Dexceptions.c1339 PyUnicodeEncodeError_GetEncoding(PyObject *exc) in PyUnicodeEncodeError_GetEncoding()
1345 PyUnicodeDecodeError_GetEncoding(PyObject *exc) in PyUnicodeDecodeError_GetEncoding()
1351 PyUnicodeEncodeError_GetObject(PyObject *exc) in PyUnicodeEncodeError_GetObject()
1357 PyUnicodeDecodeError_GetObject(PyObject *exc) in PyUnicodeDecodeError_GetObject()
1363 PyUnicodeTranslateError_GetObject(PyObject *exc) in PyUnicodeTranslateError_GetObject()
1369 PyUnicodeEncodeError_GetStart(PyObject *exc, Py_ssize_t *start) in PyUnicodeEncodeError_GetStart()
1388 PyUnicodeDecodeError_GetStart(PyObject *exc, Py_ssize_t *start) in PyUnicodeDecodeError_GetStart()
1407 PyUnicodeTranslateError_GetStart(PyObject *exc, Py_ssize_t *start) in PyUnicodeTranslateError_GetStart()
1414 PyUnicodeEncodeError_SetStart(PyObject *exc, Py_ssize_t start) in PyUnicodeEncodeError_SetStart()
1422 PyUnicodeDecodeError_SetStart(PyObject *exc, Py_ssize_t start) in PyUnicodeDecodeError_SetStart()
[all …]
/external/python/cpython3/Python/
Dcodecs.c658 static void wrong_exception_type(PyObject *exc) in wrong_exception_type()
665 PyObject *PyCodec_StrictErrors(PyObject *exc) in PyCodec_StrictErrors()
675 PyObject *PyCodec_IgnoreErrors(PyObject *exc) in PyCodec_IgnoreErrors()
699 PyObject *PyCodec_ReplaceErrors(PyObject *exc) in PyCodec_ReplaceErrors()
752 PyObject *PyCodec_XMLCharRefReplaceErrors(PyObject *exc) in PyCodec_XMLCharRefReplaceErrors()
850 PyObject *PyCodec_BackslashReplaceErrors(PyObject *exc) in PyCodec_BackslashReplaceErrors()
959 PyObject *PyCodec_NameReplaceErrors(PyObject *exc) in PyCodec_NameReplaceErrors()
1121 PyCodec_SurrogatePassErrors(PyObject *exc) in PyCodec_SurrogatePassErrors()
1285 PyCodec_SurrogateEscapeErrors(PyObject *exc) in PyCodec_SurrogateEscapeErrors()
1362 static PyObject *strict_errors(PyObject *self, PyObject *exc) in strict_errors()
[all …]
Derrors.c232 PyErr_GivenExceptionMatches(PyObject *err, PyObject *exc) in PyErr_GivenExceptionMatches()
264 _PyErr_ExceptionMatches(PyThreadState *tstate, PyObject *exc) in _PyErr_ExceptionMatches()
271 PyErr_ExceptionMatches(PyObject *exc) in PyErr_ExceptionMatches()
289 _PyErr_NormalizeException(PyThreadState *tstate, PyObject **exc, in _PyErr_NormalizeException()
393 PyErr_NormalizeException(PyObject **exc, PyObject **val, PyObject **tb) in PyErr_NormalizeException()
484 _PyErr_ChainExceptions(PyObject *exc, PyObject *val, PyObject *tb) in _PyErr_ChainExceptions()
550 PyObject *exc, *val, *tb; in _PyErr_ChainStackItem() local
577 PyObject *exc, *val, *val2, *tb; in _PyErr_FormatVFromCause() local
663 PyErr_SetFromErrnoWithFilenameObject(PyObject *exc, PyObject *filenameObject) in PyErr_SetFromErrnoWithFilenameObject()
669 PyErr_SetFromErrnoWithFilenameObjects(PyObject *exc, PyObject *filenameObject, PyObject *filenameOb… in PyErr_SetFromErrnoWithFilenameObjects()
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/exc/
DExceptionDeserializationTest.java88 MyNoArgException exc = MAPPER.readValue("{}", MyNoArgException.class); in testNoArgsException() local
95 Exception exc = MAPPER.readValue("{\"suppressed\":[]}", IOException.class); in testJDK7SuppressionProperty() local
167 Exception exc = MAPPER.readValue(aposToQuotes( in testLineNumberAsString() local
177 Exception exc = MAPPER.readValue(aposToQuotes( in testNullAsMessage() local
/external/python/cpython3/Objects/
Dexceptions.c308 _PyBaseExceptionObject_cast(PyObject *exc) in _PyBaseExceptionObject_cast()
1641 PyUnicodeEncodeError_GetEncoding(PyObject *exc) in PyUnicodeEncodeError_GetEncoding()
1647 PyUnicodeDecodeError_GetEncoding(PyObject *exc) in PyUnicodeDecodeError_GetEncoding()
1653 PyUnicodeEncodeError_GetObject(PyObject *exc) in PyUnicodeEncodeError_GetObject()
1659 PyUnicodeDecodeError_GetObject(PyObject *exc) in PyUnicodeDecodeError_GetObject()
1665 PyUnicodeTranslateError_GetObject(PyObject *exc) in PyUnicodeTranslateError_GetObject()
1671 PyUnicodeEncodeError_GetStart(PyObject *exc, Py_ssize_t *start) in PyUnicodeEncodeError_GetStart()
1690 PyUnicodeDecodeError_GetStart(PyObject *exc, Py_ssize_t *start) in PyUnicodeDecodeError_GetStart()
1708 PyUnicodeTranslateError_GetStart(PyObject *exc, Py_ssize_t *start) in PyUnicodeTranslateError_GetStart()
1715 PyUnicodeEncodeError_SetStart(PyObject *exc, Py_ssize_t start) in PyUnicodeEncodeError_SetStart()
[all …]
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dbugprone-throw-keyword-missing.cpp102 RegularException exc = RegularException(); variable
106 RegularException exc = RegularException(); in localVariableInitTest() local
111 RegularException exc; member in CtorInitializerListTest
147 RegularException exc{}; in bracedInitListTest() local
/external/google-breakpad/src/client/windows/unittests/
Dexception_handler_nesting_test.cc150 google_breakpad::ExceptionHandler exc( in InstallExceptionHandlerAndCrash() local
260 google_breakpad::ExceptionHandler exc( in TEST() local
284 google_breakpad::ExceptionHandler exc( in TEST() local
309 google_breakpad::ExceptionHandler exc( in TEST() local
Dexception_handler_death_test.cc127 scoped_ptr<google_breakpad::ExceptionHandler> exc( in TEST_F() local
152 scoped_ptr<google_breakpad::ExceptionHandler> exc; in DoCrashAccessViolation() local
314 scoped_ptr<google_breakpad::ExceptionHandler> exc( in TEST_F() local
406 scoped_ptr<google_breakpad::ExceptionHandler> exc( in TEST_F() local
499 scoped_ptr<google_breakpad::ExceptionHandler> exc( in TEST_F() local
/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/pexpect/
D_async.py45 def error(self, exc): argument
82 def connection_lost(self, exc): argument
/external/python/cpython3/Lib/asyncio/
Dprotocols.py29 def connection_lost(self, exc): argument
174 def error_received(self, exc): argument
193 def pipe_connection_lost(self, fd, exc): argument
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/
DProjectConverter.java109 public void addException(ConversionException exc) { in addException()
120 ConversionException exc = (ConversionException) iterator.next(); in printException() local
/external/aac/libAACdec/src/
Dusacdec_ace_ltp.cpp133 void Pred_lt4(FIXP_DBL exc[], /* in/out: excitation buffer */ in Pred_lt4()
208 void Pred_lt4_postfilter(FIXP_DBL exc[] /* in/out: excitation buffer */ in Pred_lt4_postfilter()
/external/llvm-project/lldb/source/Plugins/Process/Utility/
DRegisterContextMach_i386.cpp34 int RegisterContextMach_i386::DoReadEXC(lldb::tid_t tid, int flavor, EXC &exc) { in DoReadEXC()
54 const EXC &exc) { in DoWriteEXC()
DRegisterContextMach_x86_64.cpp37 EXC &exc) { in DoReadEXC()
57 const EXC &exc) { in DoWriteEXC()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DToSAXHandler.java367 public void fatalError(SAXParseException exc) throws SAXException { in fatalError()
380 public void error(SAXParseException exc) throws SAXException { in error()
391 public void warning(SAXParseException exc) throws SAXException { in warning()
/external/llvm-project/clang/test/CodeGenCXX/ARM/
Dexception-alignment.cpp16 } catch (uint64x2_t exc) { in main() local
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/
DRegisterContextKDP_x86_64.cpp56 EXC &exc) { in DoReadEXC()
104 const EXC &exc) { in DoWriteEXC()

1234567891011