| /art/runtime/interpreter/mterp/x86/ |
| op_new_array.S | 19 testb %al, %al # 0 means an exception is thrown
|
| /art/runtime/mirror/ |
| field-inl.h | 44 // Can't resolve, clear the exception if it isn't OOME and continue with a null type. 45 mirror::Throwable* exception = self->GetException(); local 46 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
|
| /art/test/523-checker-can-throw-regression/smali/ |
| Test.smali | 41 move-exception v0
|
| /art/tools/dexfuzz/src/dexfuzz/listeners/ |
| UniqueProgramTrackerListener.java | 147 } catch (IOException exception) { 148 exception.printStackTrace(); 149 } catch (InterruptedException exception) { 150 exception.printStackTrace(); 176 } catch (IOException exception) { 177 exception.printStackTrace(); 178 } catch (InterruptedException exception) { 179 exception.printStackTrace();
|
| /cts/tests/tests/os/src/android/os/cts/ |
| AsyncTaskTest.java | 75 if (mMyAsyncTask.exception != null) { 76 throw mMyAsyncTask.exception; 95 fail("Failed to throw exception!"); 112 assertNotNull(mMyAsyncTask.exception); 113 assertTrue(mMyAsyncTask.exception instanceof InterruptedException); 125 assertNull(mMyAsyncTask.exception); 134 assertNull(mMyAsyncTask.exception); 151 // This exception is expected to be caught and ignored 203 fail("Exception not thrown"); 230 public Exception exception field in class:AsyncTaskTest.MyAsyncTask [all...] |
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_exception/d/ |
| T_move_exception_3.d | 25 move-exception v6
|
| /external/ImageMagick/MagickCore/ |
| montage.c | 54 #include "MagickCore/exception.h" 55 #include "MagickCore/exception-private.h" 264 % ExceptionInfo *exception) 274 % o exception: return any errors or warnings in this structure. 313 const MontageInfo *montage_info,ExceptionInfo *exception) 322 montage_image=MontageImageList(image_info,montage_info,images,exception); 328 const MontageInfo *montage_info,const Image *images,ExceptionInfo *exception) 416 assert(exception != (ExceptionInfo *) NULL); 417 assert(exception->signature == MagickCoreSignature); 419 master_list=ImageListToArray(images,exception); [all...] |
| resample-private.h | 43 const MagickBooleanType interpolate,ExceptionInfo *exception) 62 filter[i]=AcquireResampleFilter(image,exception);
|
| /external/ImageMagick/coders/ |
| pes.c | 55 #include "MagickCore/exception.h" 56 #include "MagickCore/exception-private.h" 423 % o exception: return any errors or warnings in this structure. 426 static Image *ReadPESImage(const ImageInfo *image_info,ExceptionInfo *exception) 484 assert(exception != (ExceptionInfo *) NULL); 485 assert(exception->signature == MagickCoreSignature); 486 image=AcquireImage(image_info,exception); 487 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception); 502 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile", 522 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile" [all...] |
| /external/ImageMagick/www/api/ |
| transform.php | 65 const OrientationType orientation,ExceptionInfo *exception) 83 <dt>exception</dt> 96 ExceptionInfo *exception) 114 <dt>exception</dt> 127 ExceptionInfo *exception) 145 <dt>exception</dt> 154 <p>Image *CropImageToTiles(const Image *image, const RectangleInfo *crop_geometry, ExceptionInfo *exception)</p> 171 <dt>exception</dt> 184 ExceptionInfo *exception) 202 <dt>exception</dt [all...] |
| /external/antlr/antlr-3.4/runtime/C/src/ |
| antlr3exception.c | 3 * otherwise handling ANTLR3 standard exception structures. 42 * Creates a new ANTLR3 exception structure 44 * \param[in] exception 52 * ANTLR3_FREE() when the exception is destroyed. 55 * Pointer to newly initialized exception structure, or an ANTLR3_ERR_xx defined value 58 * An exception is 'thrown' by a recognizer when input is seen that is not predicted by 62 * the list and the one currently installed is pointed to by the newly installed exception. 65 * After an exception is created, you may add a pointer to your own structure and a pointer 66 * to a function to free this structure when the exception is destroyed. 72 antlr3ExceptionNew(ANTLR3_UINT32 exception, void * name, void * message, ANTLR3_BOOLEAN freeMessage [all...] |
| /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/ |
| MicrosphereInterpolator.java | 21 import org.apache.commons.math.exception.NotPositiveException; 22 import org.apache.commons.math.exception.NotStrictlyPositiveException;
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/ |
| NonMonotonousSequenceException.java | 17 package org.apache.commons.math.exception; 20 import org.apache.commons.math.exception.util.LocalizedFormats; 23 * Exception to be thrown when the a sequence of values is not monotonously 52 * Construct the exception. 67 * Construct the exception.
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/ |
| AbstractStorelessUnivariateStatistic.java | 19 import org.apache.commons.math.exception.util.LocalizedFormats; 20 import org.apache.commons.math.exception.NullArgumentException;
|
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/ |
| InvokeMethod002Test.java | 45 * exception object is null. 148 logWriter.println(" Send ObjectReference.InvokeMethod without Exception"); 158 TaggedObject exception = reply.getNextValueAsTaggedObject(); local 159 assertNotNull("Returned exception is null", exception); 160 assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0); 161 assertEquals("Invalid exception tag,", JDWPConstants.Tag.OBJECT_TAG, exception.ta [all...] |
| InvokeMethod003Test.java | 47 * exception object is null. 152 logWriter.println(" Send ObjectReference.InvokeMethod without Exception"); 167 TaggedObject exception = reply.getNextValueAsTaggedObject(); local 168 assertNotNull("Returned exception is null", exception); 169 assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0); 170 assertEquals("Invalid exception tag,", JDWPConstants.Tag.OBJECT_TAG, exception.ta [all...] |
| /external/autotest/client/cros/networking/ |
| apmanager_xmlrpc_server.py | 36 def __exit__(self, exception, value, traceback): 37 super(ApmanagerXmlRpcDelegate, self).__exit__(exception, value, traceback)
|
| /external/autotest/server/ |
| base_utils_unittest.py | 62 '''test that bad data passed to parse_machine() will raise an exception''' 70 for machine, exception in baddata: 71 self.assertRaises(exception, utils.parse_machine, machine)
|
| /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/ |
| e164.py | 22 import dns.exception namespace 57 raise dns.exception.SyntaxError('non-digit labels in ENUM domain name')
|
| opcode.py | 18 import dns.exception namespace 41 class UnknownOpcode(dns.exception.DNSException):
|
| rcode.py | 18 import dns.exception namespace 55 class UnknownRcode(dns.exception.DNSException):
|
| rdataclass.py | 28 import dns.exception namespace 68 class UnknownRdataclass(dns.exception.DNSException):
|
| /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/IN/ |
| DHCID.py | 16 import dns.exception namespace 42 raise dns.exception.SyntaxError
|
| /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/iam/ |
| test_password_policy.py | 39 except boto.exception.BotoServerError as srv_error: 53 raise Exception("Failed to update account password policy") 60 except boto.exception.BotoServerError as srv_error: 66 raise Exception("Failed to delete account password policy")
|
| /external/conscrypt/src/main/java/org/conscrypt/ |
| OpenSSLSessionImpl.java | 226 SSLPeerUnverifiedException exception = new SSLPeerUnverifiedException(e.getMessage()); local 227 exception.initCause(exception); 228 throw exception; 230 SSLPeerUnverifiedException exception = new SSLPeerUnverifiedException(e.getMessage()); local 231 exception.initCause(exception); 232 throw exception; 483 // The constructor can throw an exception if this object is constructed from invalid
|