HomeSort by relevance Sort by last modified time
    Searched full:caught (Results 251 - 275 of 2780) sorted by null

<<11121314151617181920>>

  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/ext/
XLogger.java 155 * the exception being caught.
170 * the exception being caught.
180 * Log an exception being caught. The generated log event uses Level ERROR.
183 * the exception being caught.
192 * Log an exception being caught allowing the log level to be specified.
197 * the exception being caught.
  /art/test/1932-monitor-events-misc/
expected.txt 9 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
16 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
24 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
30 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
36 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
43 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
50 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
57 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
96 Caught exception: art.Monitors$TestException: throwing exception during monitorEnter of NamedLock[test testNativeLockStateThrowEnter]
104 Caught exception: art.Monitors$TestException: throwing exception during monitorEntered of NamedLock[test (…)
    [all...]
  /external/libpng/contrib/visupng/
cexcept.h 134 by the Try clause), and the exception is not caught by a nested
141 caught, which is significant if it has side effects, for example:
158 caught. Therefore, variables modified inside the Try block whose
170 exception must be caught, otherwise the program may crash.
199 int caught; \
220 while (the_exception_context->caught = 0, \
221 the_exception_context->caught); \
224 the_exception_context->caught = 1; \
228 if (!the_exception_context->caught || action) { } \
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
EventBuilder.java 119 * @param caught true to report caught exception, false otherwise.
123 public EventBuilder setExceptionOnly(long exceptionClassID, boolean caught,
126 mod.caught = caught;
EventMod.java 82 public boolean caught; field in class:EventMod
115 caught = false;
  /external/valgrind/none/tests/
async-sigs.c 2 // following combinations: sync and async signals, caught and uncaught
7 // another process P, sending S from P multiple times (all caught), then
8 // sending another signal from P (not caught).
84 fprintf(stderr, "testing: blocking=%d caught=%d fatal=%d... ",
112 do_kill(pid, caughtsig); // Should be caught.
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalCooling.java 151 Log.i(TAG, "IOException caught in parse() function");
196 Log.i(TAG, "XmlPullParserException caught in parse():" + xppe.getMessage());
199 Log.i(TAG, "IOException caught in parse():" + e.getMessage());
210 Log.i(TAG, "IOException caught in parse() function");
331 Log.i(TAG, "XmlPullParserException caught in processStartElement()");
334 Log.i(TAG, "IOException caught in processStartElement()");
558 Log.i(TAG, "NoSuchMethodException caught in device class init: " + classPath);
560 Log.i(TAG, "SecurityException caught in device class init: " + classPath);
562 Log.i(TAG, "IllegalAccessException caught in device class init: " + classPath);
564 Log.i(TAG, "IllegalArgumentException caught in device class init: " + classPath)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
ByteBlock.java 39 /** {@code non-null;} list of exceptions caught and their handler targets */
52 * @param catches {@code non-null;} list of exceptions caught and their
138 * Gets the list of exceptions caught and their handler targets.
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlock.java 39 /** {@code non-null;} list of exceptions caught and their handler targets */
52 * @param catches {@code non-null;} list of exceptions caught and their
139 * Gets the list of exceptions caught and their handler targets.
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ExceptionCaughtDebuggee.java 36 * Generates caught DebuggeeException exception.
73 logWriter.println("We caught our exception as expected");
104 throw new DebuggeeException("Caught debuggee exception");
CombinedExceptionEventsDebuggee.java 27 public static final String TEST_CAUGHT_EXCEPTION_SIGNAL = "CAUGHT";
67 throwDebuggeeException("Caught debuggee exception");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
StopDebuggee.java 83 logWriter.println("StopDebuggee:" + e + " is caught while waitForStart.wait()");
120 logWriter.println(getName() + ": FAILED: TIMEOUT is run out - No any exception is caught");
123 logWriter.println(getName() + ": Exception is caught: " + thrown);
  /external/guava/guava/src/com/google/common/collect/
ForwardingQueue.java 88 } catch (IllegalStateException caught) {
103 } catch (NoSuchElementException caught) {
118 } catch (NoSuchElementException caught) {
  /frameworks/base/core/tests/coretests/BinderProxyCountingTestApp/src/com/android/frameworks/coretests/binderproxycountingtestapp/
BpcTestAppCmdService.java 96 Log.e(TAG, "RemoteException caught! " + e);
113 Log.e(TAG, "RemoteException caught! " + e);
130 Log.e(TAG, "RemoteException caught! " + e);
  /frameworks/base/core/tests/coretests/src/android/util/
ArrayMapTest.java 59 System.out.println("[successfully caught CME at put #" + i
81 "[successfully caught CME at clear #"
105 Log.e(TAG, "concurrent modification caught on single thread", e);
  /system/chre/util/include/chre/util/
time_impl.h 28 // Perform the simple unit conversion. Warning: overflow is caught and
46 // Perform the simple unit conversion. Warning: overflow is caught and
73 // Perform the simple unit conversion. Warning: overflow is caught and
  /system/tools/aidl/tests/java_app/src/android/aidl/tests/
NullableTests.java 40 mLog.log("Caught an exception on null string parameter (expected)");
57 mLog.log("Caught an exception on null Binder parameter (expected)");
74 mLog.log("Caught an exception on list with null Binder (expected)");
  /cts/tests/tests/os/src/android/os/cts/
MessageTest.java 260 final Exception[] caught = new Exception[1]; local
267 caught[0] = ex; // expected
274 if (caught[0] == null) {
280 final Exception[] caught = new Exception[1]; local
287 caught[0] = ex; // expected
294 if (caught[0] == null) {
  /external/clang/test/SemaCXX/
exceptions.cpp 172 } catch (D &d) { // expected-warning {{exception of type 'HandlerInversion::D &' will be caught by earlier handler}}
179 } catch (D *d) { // expected-warning {{exception of type 'HandlerInversion::D *' will be caught by earlier handler}}
206 } catch (D2 &d) { // expected-warning {{exception of type 'HandlerInversion::D2 &' will be caught by earlier handler}}
225 } catch (D2 &d) { // expected-warning {{exception of type 'HandlerInversion::D2 &' will be caught by earlier handler}}
230 } catch (const D2 &d) { // expected-warning {{exception of type 'const HandlerInversion::D2 &' will be caught by earlier handler}}
235 } catch (D &d) { // expected-warning {{exception of type 'HandlerInversion::D &' will be caught by earlier handler}}
  /art/test/952-invoke-custom/src/
Main.java 29 System.out.println("Caught exception from uninitialized call site");
37 System.out.println("Caught exception from uninitialized call site");
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
ThrowingCstInsn.java 29 /** {@code non-null;} list of exceptions caught */
38 * @param catches {@code non-null;} list of exceptions caught
  /dalvik/dx/src/com/android/dx/rop/code/
ThrowingCstInsn.java 30 /** {@code non-null;} list of exceptions caught */
39 * @param catches {@code non-null;} list of exceptions caught
  /dalvik/dx/tests/067-dex-switch-and-try/
Blort.java 65 // the try code can theoretically throw, but it would be caught
89 // it would be caught inside the case itself, so the outer
  /external/ImageMagick/Magick++/tests/
color.cpp 138 cout << "Caught exception: " << error_.what() << endl;
143 cout << "Caught exception: " << error_.what() << endl;
montageImages.cpp 122 cout << "Caught exception: " << error_.what() << endl;
127 cout << "Caught exception: " << error_.what() << endl;

Completed in 520 milliseconds

<<11121314151617181920>>