| /ndk/sources/cxx-stl/stlport/stlport/ |
| exception.h | 25 # include <exception> 28 # include_next <exception.h> 30 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception.h)
|
| /prebuilts/misc/common/swig/include/2.0.11/lua/ |
| std_except.i | 3 * These typemaps are used when methods are declared with an STL exception 13 %include <exception.i> 17 %ignore exception; // not sure if I should ignore this... 18 class exception 21 exception() throw() { } 22 virtual ~exception() throw(); 29 // therefore all classes based upon std::exception are converted to their strings & returned as errors 32 %typemap(throws) std::exception "SWIG_exception(SWIG_SystemError, $1.what());"
|
| /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/ |
| exception.h | 25 # include <exception> 28 # include_next <exception.h> 30 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception.h)
|
| /external/ImageMagick/www/source/ |
| core.c | 10 *exception; local 30 exception=AcquireExceptionInfo(); 33 images=ReadImage(image_info,exception); 34 if (exception->severity != UndefinedException) 35 CatchException(exception); 44 resize_image=ResizeImage(image,106,80,LanczosFilter,1.0,exception); 46 MagickError(exception->severity,exception->reason,exception->description); 60 exception=DestroyExceptionInfo(exception) [all...] |
| /external/apache-xml/src/main/java/org/apache/xpath/ |
| XPathException.java | 28 * This class implements an exception object that all 63 /** A nested exception. 65 protected Exception m_exception; 140 * the error originated from, and another exception 141 * that caused this exception. 144 * @param e The exception that caused this exception. 146 public XPathException(String message, Node styleNode, Exception e) 157 * an error message, and another exception 158 * that caused this exception 188 Throwable exception = m_exception; local 221 Throwable exception = m_exception; local 281 Throwable exception = m_exception; local [all...] |
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
| InputMismatchExceptionTest.java | 35 InputMismatchException exception = new InputMismatchException(); local 36 assertNotNull(exception); 37 assertTrue(exception instanceof NoSuchElementException); 38 assertTrue(exception instanceof Serializable); 45 InputMismatchException exception = new InputMismatchException( local 47 assertNotNull(exception); 48 assertEquals(ERROR_MESSAGE, exception.getMessage()); 54 public void testSerializationSelf() throws Exception { 62 public void testSerializationCompatibility() throws Exception {
|
| /external/lzma/Java/Tukaani/src/org/tukaani/xz/ |
| DeltaOutputStream.java | 23 private IOException exception = null; field in class:DeltaOutputStream 45 if (exception != null) 46 throw exception; 62 exception = e; 68 if (exception != null) 69 throw exception; 77 exception = e; 84 if (exception != null) 85 throw exception; 90 exception = e [all...] |
| /ndk/sources/cxx-stl/stlport/stlport/stl/ |
| _exception.h | 18 // The header <exception> contains low-level functions that interact 19 // with a compiler's exception-handling mechanism. It is assumed to 23 // On platforms where <exception> does not exist, this header defines 24 // an exception base class. This is *not* a substitute for everything 25 // in <exception>, but it suffices to support a bare minimum of STL 38 # define exception _STLP_NULLIFIED_BROKEN_EXCEPTION_CLASS macro 41 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(Exception.h) 43 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(Exception) 45 # undef exception macro 50 # include_next <exception.h 161 class _STLP_CLASS_DECLSPEC exception { class [all...] |
| /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/ |
| _exception.h | 18 // The header <exception> contains low-level functions that interact 19 // with a compiler's exception-handling mechanism. It is assumed to 23 // On platforms where <exception> does not exist, this header defines 24 // an exception base class. This is *not* a substitute for everything 25 // in <exception>, but it suffices to support a bare minimum of STL 38 # define exception _STLP_NULLIFIED_BROKEN_EXCEPTION_CLASS macro 41 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(Exception.h) 43 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(Exception) 45 # undef exception macro 50 # include_next <exception.h 161 class _STLP_CLASS_DECLSPEC exception { class [all...] |
| /external/apache-xml/src/main/java/org/apache/xml/utils/ |
| DefaultErrorHandler.java | 47 * if this flag is set to true, we will rethrow the exception on 112 * @param exception The warning information encapsulated in a 113 * SAX parse exception. 114 * @throws SAXException Any SAX exception, possibly 115 * wrapping another exception. 117 public void warning(SAXParseException exception) throws SAXException 121 printLocation(pw, exception); 122 pw.println("Parser warning: " + exception.getMessage()); 141 * @param exception The error information encapsulated in a 142 * SAX parse exception [all...] |
| /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/ |
| DialogHelperImpl.java | 46 * mDialogHelper.showErrorMessageDialog("An exception occurred!", e); 72 private static final String KEY_EXCEPTION = "exception"; 82 public void showErrorMessageDialog(int titleId, Exception exception) { 83 showErrorMessageDialog(mActivity.getString(titleId), exception); local 87 public void showErrorMessageDialog(String title, Exception exception) { 90 bundle.putSerializable(KEY_EXCEPTION, exception); 99 Exception exception = (Exception) args.getSerializable(KEY_EXCEPTION) local [all...] |
| /prebuilts/misc/common/swig/include/2.0.11/std/ |
| std_except.i | 12 struct exception 14 virtual ~exception() throw(); 18 struct bad_exception : exception 22 struct logic_error : exception 47 struct runtime_error : exception
|
| /art/runtime/interpreter/mterp/mips/ |
| op_throw.S | 2 * Throw an exception object in the current thread. 5 EXPORT_PC() # exception handler can throw 7 GET_VREG(a1, a2) # a1 <- vAA (exception object) 10 sw a1, THREAD_EXCEPTION_OFFSET(rSELF) # thread->exception <- obj
|
| /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/beanstalk/ |
| test_exception.py | 23 from boto.beanstalk.exception import simple 37 # Create exception from class name 39 exception = simple(error) 40 self.assertEqual(exception.__class__.__name__, 'TooManyApplications') 42 # Create exception from class name + 'Exception' as seen from the 45 exception = simple(error) 46 self.assertEqual(exception.__class__.__name__, 'TooManyApplications') 49 self.assertEqual(exception.message, 'bar')
|
| /art/test/081-hot-exceptions/src/ |
| Main.java | 29 int exception = 0; local 36 exception++; 40 System.out.println("exception = " + exception);
|
| /art/test/427-bounds/src/ |
| Main.java | 19 Exception exception = null; local 23 exception = e; 26 String exceptionMessage = exception.getMessage(); 31 throw new Error("Wrong length in exception message"); 38 throw new Error("Wrong index in exception message");
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/ |
| ConvergenceException.java | 17 package org.apache.commons.math.exception; 19 import org.apache.commons.math.exception.util.Localizable; 20 import org.apache.commons.math.exception.util.LocalizedFormats; 34 * Construct the exception. 40 * Construct the exception with a specific context. 50 * Construct the exception with a specific context and arguments.
|
| NoDataException.java | 17 package org.apache.commons.math.exception; 19 import org.apache.commons.math.exception.util.Localizable; 20 import org.apache.commons.math.exception.util.LocalizedFormats; 23 * Exception to be thrown when the required data is missing. 34 * Construct the exception. 40 * Construct the exception with a specific context. 42 * @param specific Contextual information on what caused the exception.
|
| /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/exception/ |
| get_error_info.hpp | 15 #include <boost/exception/exception.hpp> 16 #include <boost/exception/detail/error_info_impl.hpp> 17 #include <boost/exception/detail/type_info.hpp> 32 get( exception const & x ) 53 get( exception const & x ) 65 get( exception const & x ) 77 get( exception const & x ) 102 get_error_info( boost::exception const & x ) 109 get_error_info( boost::exception & x [all...] |
| /art/runtime/interpreter/mterp/mips64/ |
| op_throw.S | 2 * Throw an exception object in the current thread. 7 GET_VREG_U a0, a2 # a0 <- vAA (exception object) 9 sd a0, THREAD_EXCEPTION_OFFSET(rSELF) # thread->exception <- obj
|
| /cts/tests/tests/content/src/android/content/pm/cts/ |
| PackageManager_NameNotFoundExceptionTest.java | 27 PackageManager.NameNotFoundException exception = new PackageManager.NameNotFoundException(); local 29 throw exception; 35 exception = new PackageManager.NameNotFoundException(message); 37 throw exception;
|
| /external/ImageMagick/MagickCore/ |
| colormap-private.h | 23 #include "MagickCore/exception-private.h" 30 ExceptionInfo *exception) 34 (void) ThrowMagickException(exception,GetMagickModule(),CorruptImageError, 42 const ssize_t index,Quantum *target,ExceptionInfo *exception) 46 (void) ThrowMagickException(exception,GetMagickModule(),CorruptImageError,
|
| /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearchdomain/ |
| exceptions.py | 22 from boto.exception import BotoServerError
|
| /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2containerservice/ |
| exceptions.py | 23 from boto.exception import BotoServerError
|
| /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/opsworks/ |
| exceptions.py | 22 from boto.exception import JSONResponseError
|