/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
Edge.java | 45 * Denotes a control flow graph edge corresponding to an exception handler.
47 * corresponds to an exception handler. The actual value of {@link #info} is
48 * the index, in the {@link ClassWriter} type table, of the exception that
51 static final int EXCEPTION = 0x7FFFFFFF;
61 * EXCEPTION).
|
/external/chromium-trace/catapult/firefighter/update/common/buildbot/ |
__init__.py | 13 EXCEPTION = 4
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
keywords.py | 46 EXCEPTION = set('try catch throw'.split()) 49 ALL = TYPES | TYPE_MODIFIERS | ACCESS | CASTS | OTHERS | OTHER_TYPES | CONTROL | EXCEPTION | LOOP
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
FuturesTransformTest.java | 49 throw new UndeclaredThrowableException(EXCEPTION); 54 public void testFutureGetThrowsFunctionException() throws Exception { 56 listener.assertException(EXCEPTION);
|
AbstractChainedListenableFutureTest.java | 36 protected static final Exception EXCEPTION = new Exception("Test exception"); 43 protected void setUp() throws Exception { 52 public void testFutureGetBeforeCallback() throws Exception { 53 // Verify that get throws a timeout exception before the callback is called. 60 public void testFutureGetThrowsWrappedException() throws Exception { 61 inputFuture.setException(EXCEPTION); 62 listener.assertException(EXCEPTION); [all...] |
AbstractServiceTest.java | 51 public void testNoOpServiceStartStop() throws Exception { 77 public void testNoOpServiceStartAndWaitStopAndWait() throws Exception { 87 public void testNoOpServiceStartAsyncAndAwaitStopAsyncAndAwait() throws Exception { 97 public void testNoOpServiceStopIdempotence() throws Exception { 115 public void testNoOpServiceStopIdempotenceAfterWait() throws Exception { 125 public void testNoOpServiceStopIdempotenceDoubleWait() throws Exception { 137 throws Exception { 170 public void testManualServiceStartStop() throws Exception { 201 public void testManualServiceNotifyStoppedWhileRunning() throws Exception { 220 public void testManualServiceStopWhileStarting() throws Exception { 364 final AtomicReference<Throwable> exception = Atomics.newReference(); local 775 final RuntimeException exception = new RuntimeException("deliberate"); field in class:AbstractServiceTest.StartThrowingService 788 final RuntimeException exception = new RuntimeException("deliberate"); field in class:AbstractServiceTest.RunThrowingService 802 final RuntimeException exception = new RuntimeException("deliberate"); field in class:AbstractServiceTest.StopThrowingService [all...] |
FuturesTransformAsyncFunctionTest.java | 67 default: throw new UndeclaredThrowableException(EXCEPTION); 73 public void testFutureGetThrowsFunctionException() throws Exception { 75 listener.assertException(EXCEPTION); 79 throws Exception { 89 throws Exception { 99 public void testFutureCancelBeforeInputCompletion() throws Exception { 111 public void testFutureCancellableBeforeOutputCompletion() throws Exception { 124 public void testFutureCancellableBeforeFunctionCompletion() throws Exception { 153 public void testFutureCancelAfterCompletion() throws Exception { 162 public void testFutureGetThrowsRuntimeException() throws Exception { [all...] |
/external/guava/guava-testlib/test/com/google/common/testing/ |
TestLogHandlerTest.java | 35 @Override protected void setUp() throws Exception { 47 public void tearDown() throws Exception { 54 public void test() throws Exception { 60 assertSame(EXCEPTION, record.getThrown()); 63 public void testConcurrentModification() throws Exception { 87 static final Exception EXCEPTION = new Exception(); 94 logger.log(Level.INFO, "message", EXCEPTION);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
SingleStepWithPendingExceptionTest.java | 29 * JDWP Unit test for SINGLE_STEP event with pending exception. 39 * Tests that we properly single-step OUT of a method throwing an exception 42 * We execute the test method once with an EXCEPTION event request to capture the 44 * Then we set a BREAKPOINT event in the method throwing the exception and execute 60 // Request exception event. 66 // Wait for exception and remember catch location. 68 debuggeeWrapper.vmMirror.receiveCertainEvent(JDWPConstants.EventKind.EXCEPTION); 71 assertEventKindEquals("Expected EXCEPTION event", parsedEvents[0].getEventKind(), 72 JDWPConstants.EventKind.EXCEPTION); 79 // Remove exception request [all...] |
ExceptionBaseTest.java | 30 * Base class for EXCEPTION tests. 35 * Waits for EXCEPTION event and checks it is the one we expect and the event 49 JDWPConstants.EventKind.EXCEPTION, 51 JDWPConstants.EventKind.getName(JDWPConstants.EventKind.EXCEPTION), 62 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.EXCEPTION, requestID);
|
BreakpointOnCatchTest.java | 44 * (with a pending exception). 55 // First, we set an EXCEPTION caught event to know the location of the catch. 58 // Execute the EXCEPTION. 61 // Wait for EXCEPTION event. 63 debuggeeWrapper.vmMirror.receiveCertainEvent(JDWPConstants.EventKind.EXCEPTION); 73 // Clear the EXCEPTION event. 74 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.EXCEPTION, exceptionRequestID); 79 // The debuggee is suspended on the EXCEPTION event: resume it to hit the BREAKPOINT event.
|
EventWithExceptionTest.java | 31 * an EXCEPTION event where the exception is caught (by a catch handler). 68 * Tests we properly BREAKPOINT in the catch handler if we request it before the EXCEPTION 77 // Set EXCEPTION event 82 // Wait for EXCEPTION event 83 ParsedEvent exceptionEvent = waitForEvent(JDWPConstants.EventKind.EXCEPTION, 90 // Remove EXCEPTION event. 91 clearEvent(JDWPConstants.EventKind.EXCEPTION, exceptionRequestId, true); 93 // Resume debuggee suspended on EXCEPTION event. 94 logWriter.println("Resume debuggee after EXCEPTION event") [all...] |
ExceptionWithLocationTest.java | 28 * JDWP Unit test for caught EXCEPTION event with LocationOnly modifier. 33 // Cache exception class ID. 37 * This testcase is for caught EXCEPTION event with LocationOnly 41 * The test verifies that requested EXCEPTION event occurs in the 47 runEventWithLocationTest(JDWPConstants.EventKind.EXCEPTION); 81 TaggedObject exception = eventException.getException(); local 82 assertEquals(JDWPConstants.Tag.OBJECT_TAG, exception.tag); 84 long thrownExceptionClassId = getObjectReferenceType(exception.objectID); 85 assertEquals("Received incorrect exception",
|
CombinedExceptionEventsTest.java | 31 * JDWP Unit test for combined EXCEPTION events. 40 * Tests combined EXCEPTION events for caught exception. It runs the 42 * EXCEPTION events for caught exception. 49 * Tests combined EXCEPTION events for uncaught exception. It runs the 51 * EXCEPTION events for uncaught exception. 58 * Tests combined EXCEPTION events. It runs the CombinedExceptionEventsDebugge [all...] |
/external/v8/src/ |
json-stringifier.h | 28 enum Result { UNCHANGED, SUCCESS, EXCEPTION }; 196 DCHECK(result == EXCEPTION); 267 return EXCEPTION; 280 return EXCEPTION; 303 EXCEPTION); 368 EXCEPTION); 386 isolate_, value, Object::ToString(isolate_, object), EXCEPTION); 391 EXCEPTION); 506 EXCEPTION); 560 EXCEPTION); [all...] |
/external/jetty/src/java/org/eclipse/jetty/server/ssl/ |
SslCertificates.java | 71 catch (Exception e) 73 LOG.warn(Log.EXCEPTION,e); 140 catch (Exception e) 142 LOG.warn(Log.EXCEPTION,e);
|
/external/jetty/src/java/org/eclipse/jetty/util/log/ |
Log.java | 57 public final static String EXCEPTION= "EXCEPTION "; 246 catch (Exception e) 265 LOG.debug(EXCEPTION, th); 302 * Ignore an exception unless trace is enabled. 413 LOG.warn(EXCEPTION, th);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Deoptimization/ |
DeoptimizationWithExceptionHandlingTest.java | 36 * This tests checks we properly handle exception event when we fully 51 * This tests checks we properly handle exception event when we fully 52 * deoptimize the stack and are able to receive EXCEPTION event for the 53 * thrown exception. 56 * to cause a full deoptimization of the stack and an EXCEPTION event 57 * to check we do suspend the debuggee for the thrown exception, and 59 * Then we wait for the EXCEPTION event to be posted and resume the 79 // Request Exception event to test we suspend for this event during deoptimization. 87 // Wait for the Exception event. 90 // Resume the debuggee from the exception [all...] |
/external/jetty/src/java/org/eclipse/jetty/jmx/ |
ObjectMBean.java | 134 catch(Exception e) 164 catch (Exception e) 173 catch (Exception e) 361 LOG.warn(Log.EXCEPTION, e); 366 LOG.warn(Log.EXCEPTION, e); 367 throw new ReflectionException(new Exception(e.getCause())); 381 catch (Exception e) 383 LOG.warn(Log.EXCEPTION, e); 429 LOG.warn(Log.EXCEPTION, e); 434 LOG.warn(Log.EXCEPTION, e) [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/ |
Dbg.stg | 202 "DBG->recognitionException(DBG, EXCEPTION);<\n>" 218 "DBG->recognitionException(DBG, EXCEPTION);" 220 @newNVException.noViableAltException() ::= "DBG->recognitionException(DBG, EXCEPTION);" 226 DBG->recognitionException(DBG, EXCEPTION); 236 // DBG->recognitionException(DBG, EXCEPTION);
|
C.stg | 175 * and so on. The exception (in my book at least) is for generated code, where you are 219 #undef EXCEPTION 263 #define EXCEPTION LEXSTATE->exception 342 #undef EXCEPTION 378 #define EXCEPTION PSRSTATE->exception 421 #undef EXCEPTION 456 #define EXCEPTION PSRSTATE->exception [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
JDWPConstants.java | 280 public static final byte EXCEPTION = 4; 342 case EXCEPTION: 343 return "EXCEPTION";
|
/external/v8/src/regexp/ |
regexp-macro-assembler.cc | 84 return_value = EXCEPTION; 93 if (result->IsException()) return_value = EXCEPTION; 196 if (result == EXCEPTION && !isolate->has_pending_exception()) { 198 // but haven't created the exception yet.
|
/external/jetty/src/java/org/eclipse/jetty/util/thread/ |
Timeout.java | 144 LOG.warn(Log.EXCEPTION,th);
|
/external/jetty/src/java/org/eclipse/jetty/xml/ |
XmlParser.java | 107 catch (Exception e) 123 catch (Exception e) 128 catch (Exception e) 130 LOG.warn(Log.EXCEPTION, e); 385 LOG.debug(Log.EXCEPTION, ex); 395 LOG.debug(Log.EXCEPTION, ex); 403 LOG.debug(Log.EXCEPTION, ex);
|