HomeSort by relevance Sort by last modified time
    Searched refs:exception (Results 226 - 250 of 4445) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/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.
  /external/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 126 * @param exception log this cause
129 public void debug(Object message, Throwable exception) {
130 log(Level.FINE, String.valueOf(message), exception);
149 * @param exception log this cause
152 public void error(Object message, Throwable exception) {
153 log(Level.SEVERE, String.valueOf(message), exception);
172 * @param exception log this cause
175 public void fatal(Object message, Throwable exception) {
176 log(Level.SEVERE, String.valueOf(message), exception);
206 * @param exception log this caus
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
AsyncRunner.java 36 private Exception mException;
40 public Exception exception; field in class:AsyncRunner.RunnerResult
82 } catch (Exception exception) {
83 result.exception = exception;
90 } catch (Exception exception) {
91 result.exception = exception
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/examples/c++/
Uart-example.cpp 27 #include <exception>
41 } catch (std::exception& e) {
47 } catch (std::exception& e) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/
WeakReferenceTest.java 42 } catch (Exception e) {
43 fail("Exception during test : " + e.getMessage());
48 boolean exception = false;
52 exception = true;
54 assertTrue("Should not throw NullPointerException", !exception);
68 } catch (Exception e) {
69 fail("Exception during test : " + e.getMessage());
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
PersonItemData.java 32 void onPersonDataFailed(PersonItemData data, Exception exception);
57 protected void notifyDataFailed(final Exception exception) {
59 mListener.onPersonDataFailed(this, exception);
  /system/core/gatekeeperd/
IUserManager.cpp 43 int32_t exception = reply.readExceptionCode(); local
44 if (exception != 0) {
45 ALOGE("%s: got exception (%d)\n", __func__, exception);
  /external/ImageMagick/MagickCore/
channel.c 96 % ExceptionInfo *exception)
104 % o exception: return any errors or warnings in this structure.
119 const Quantum pixel,ExceptionInfo *exception)
136 source_view=AcquireVirtualCacheView(source_image,exception);
137 destination_view=AcquireAuthenticCacheView(destination_image,exception);
162 exception);
164 destination_image->columns,1,exception);
186 if (SyncCacheViewAuthenticPixels(destination_view,exception) == MagickFalse)
195 ExceptionInfo *exception)
234 assert(exception != (ExceptionInfo *) NULL)
    [all...]
exception-private.h 16 MagickCore exception private methods.
32 (void) ThrowMagickException(exception,GetMagickModule(),severity, \
54 #define ThrowFileException(exception,severity,tag,context) \
60 (void) ThrowMagickException(exception,GetMagickModule(),severity, \
67 (void) ThrowMagickException(exception,GetMagickModule(),severity, \
73 (void) ThrowMagickException(exception,GetMagickModule(),severity, \
84 (void) ThrowMagickException(exception,GetMagickModule(),severity, \
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/
XMLSupport.java 51 public void error(SAXParseException exception) throws SAXException {
52 fail(exception.getMessage());
55 public void fatalError(SAXParseException exception)
57 fail(exception.getMessage());
60 public void warning(SAXParseException exception)
62 fail(exception.getMessage());
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SimpleInputStream.java 28 private IOException exception = null; field in class:SimpleInputStream
64 if (exception != null)
65 throw exception;
114 exception = e;
123 if (exception != null)
124 throw exception;
  /external/v8/test/mjsunit/
debug-evaluate-modify-this.js 9 var exception = null;
20 exception = e;
33 assertNull(exception);
debug-stack-check-position.js 8 var exception = null; variable
16 exception = e;
30 assertNull(exception);
strict-mode-eval.js 45 var exception = false;
49 exception = true;
52 assertTrue(exception);
55 var exception = false;
59 exception = true;
62 assertTrue(exception);
65 var exception = false;
69 exception = true;
72 assertTrue(exception);
75 var exception = false
    [all...]
  /external/v8/test/mjsunit/regress/
redeclaration-error-types.js 23 // exception.
33 // exception.
43 // exception.
53 // exception.
62 // exception.
70 // Throw a SyntaxError exception.
78 // Throw a SyntaxError exception.
86 // If hasRestrictedGlobal is true, throw a SyntaxError exception.
94 // If hasRestrictedGlobal is true, throw a SyntaxError exception.
103 // If fnDefinable is false, throw a TypeError exception
    [all...]
regress-3717.js 8 var exception = null; variable
22 exception = e;
33 assertNull(exception);
regress-4309-2.js 9 var exception = null; variable
17 exception = e;
34 assertNull(exception);
regress-crbug-405922.js 8 var exception = null;
16 exception = e;
30 assertNull(exception);
  /external/v8/test/mjsunit/wasm/
unreachable.js 19 var exception = ""; variable
24 exception = e;
26 assertEquals("unreachable", exception.message);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
IllegalStateExceptionTest.java 49 Throwable emptyThrowable = new Exception();
55 Throwable throwable = new Exception("msg");
56 IllegalStateException exception = new IllegalStateException(throwable); local
57 assertEquals(throwable.getClass().getName() + ": " + "msg", exception.getMessage());
66 Throwable emptyThrowable = new Exception();
72 Throwable throwable = new Exception("msg_exception");
73 IllegalStateException exception = new IllegalStateException("msg", throwable); local
74 assertEquals("msg", exception.getMessage());
75 assertEquals("msg", exception.getLocalizedMessage());
76 assertEquals(throwable.getClass().getName() + ": " + throwable.getMessage(), exception
    [all...]
UnsupportedOperationExceptionTest.java 49 Throwable emptyThrowable = new Exception();
56 Throwable throwable = new Exception("msg");
57 UnsupportedOperationException exception = new UnsupportedOperationException(throwable); local
58 assertEquals(throwable.getClass().getName() + ": " + "msg", exception.getMessage());
67 Throwable emptyThrowable = new Exception();
74 Throwable throwable = new Exception("msg_exception");
75 UnsupportedOperationException exception = new UnsupportedOperationException( local
77 assertEquals("msg", exception.getMessage());
78 assertEquals("msg", exception.getLocalizedMessage());
79 assertEquals(throwable.getClass().getName() + ": " + throwable.getMessage(), exception
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/
exception 19 // the native header <exception>.
40 * call to the native exception header:
43 # include_next <exception>
47 # include <../include/exception>
49 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception)
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/
handler.py 32 def error(self, exception):
34 raise exception
36 def fatalError(self, exception):
38 raise exception
40 def warning(self, exception):
42 print exception
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/sax/
handler.py 32 def error(self, exception):
34 raise exception
36 def fatalError(self, exception):
38 raise exception
40 def warning(self, exception):
42 print exception

Completed in 663 milliseconds

1 2 3 4 5 6 7 8 91011>>