HomeSort by relevance Sort by last modified time
    Searched defs:exception (Results 76 - 100 of 2048) sorted by null

1 2 34 5 6 7 8 91011>>

  /art/runtime/mirror/
field-inl.h 43 // Can't resolve, clear the exception if it isn't OOME and continue with a null type.
44 mirror::Throwable* exception = self->GetException(); local
45 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
  /cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/ImplicitlyExposedApp/src/com/android/cts/implicitapp/
ImplicitActivity.java 40 String exception = null; local
44 exception = t.getClass().getName();
51 .setException(exception)
  /cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/NormalApp/src/com/android/cts/normalapp/
ExposedActivity.java 41 String exception = null; local
45 exception = t.getClass().getName();
52 .setException(exception)
ExposedService.java 33 String exception = null; local
37 exception = t.getClass().getName();
44 .setException(exception)
54 String exception = null; local
58 exception = t.getClass().getName();
65 .setException(exception)
NormalActivity.java 40 String exception = null; local
44 exception = t.getClass().getName();
51 .setException(exception)
NormalService.java 37 String exception = null; local
41 exception = t.getClass().getName();
48 .setException(exception)
NormalWebActivity.java 43 String exception = null; local
47 exception = t.getClass().getName();
54 .setException(exception)
  /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/MagickWand/
magick-wand-private.h 31 (void) ThrowMagickException(wand->exception,GetMagickModule(),severity, \
64 *exception; member in struct:_MagickWand
  /external/ImageMagick/www/source/core/
sigmoidal-contrast.c 46 CatchException(exception); \
66 *exception; local
91 exception=AcquireExceptionInfo();
92 contrast_image=ReadImage(image_info,exception);
108 status=WriteImages(image_info,contrast_image,argv[2],exception);
112 exception=DestroyExceptionInfo(exception);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
MathIllegalArgumentException.java 17 package org.apache.commons.math.exception;
21 import org.apache.commons.math.exception.util.ArgUtils;
22 import org.apache.commons.math.exception.util.MessageFactory;
23 import org.apache.commons.math.exception.util.Localizable;
MathIllegalStateException.java 17 package org.apache.commons.math.exception;
21 import org.apache.commons.math.exception.util.ArgUtils;
22 import org.apache.commons.math.exception.util.MessageFactory;
23 import org.apache.commons.math.exception.util.Localizable;
MathThrowable.java 17 package org.apache.commons.math.exception;
21 import org.apache.commons.math.exception.util.Localizable;
MathUnsupportedOperationException.java 17 package org.apache.commons.math.exception;
21 import org.apache.commons.math.exception.util.ArgUtils;
22 import org.apache.commons.math.exception.util.MessageFactory;
23 import org.apache.commons.math.exception.util.Localizable;
24 import org.apache.commons.math.exception.util.LocalizedFormats;
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.
NumberIsTooLargeException.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 a number is too large.
43 * Construct the exception.
55 * Construct the exception with a specific context.
NumberIsTooSmallException.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 a number is too small.
43 * Construct the exception.
56 * Construct the exception with a specific context.
OutOfRangeException.java 17 package org.apache.commons.math.exception;
19 import org.apache.commons.math.exception.util.LocalizedFormats;
22 * Exception to be thrown when some argument is out of range.
38 * Construct an exception from the mismatched dimensions.
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/util/
DummyLocalizable.java 17 package org.apache.commons.math.exception.util;
MessageFactory.java 17 package org.apache.commons.math.exception.util;
  /external/clang/test/CodeGenCXX/
weak-external.cpp 37 class _LIBCPP_EXCEPTION_ABI exception class in namespace:std
40 _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {}
41 virtual ~exception() _NOEXCEPT;
46 : public exception
  /external/doclava/src/com/google/doclava/
ThrowsTagInfo.java 52 public ThrowsTagInfo(String name, String kind, String text, ClassInfo exception,
55 mException = exception;
59 public ClassInfo exception() { method in class:ThrowsTagInfo
  /external/junit-params/src/test/java/junitparams/
RulesTest.java 23 public ExpectedException exception = ExpectedException.none(); field in class:RulesTest
  /external/mockito/src/test/java/org/mockito/exceptions/base/
TraceBuilder.java 18 RuntimeException exception = new RuntimeException(); local
19 exception.setStackTrace(toTraceArray());
20 return exception;
  /external/mockito/src/test/java/org/mockito/internal/verification/
VerificationOverTimeImplTest.java 23 public ExpectedException exception = ExpectedException.none(); field in class:VerificationOverTimeImplTest
40 exception.expect(is(toBeThrown));
49 exception.expect(is(toBeThrown));
50 exception.expectMessage("message");
59 exception.expect(is(toBeThrown));

Completed in 454 milliseconds

1 2 34 5 6 7 8 91011>>