HomeSort by relevance Sort by last modified time
    Searched refs:EXCEPTION (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /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/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 56 public void testNoOpServiceStartAndWaitStopAndWait() throws Exception {
66 public void testNoOpServiceStartStopIdempotence() throws Exception {
78 public void testNoOpServiceStartStopIdempotenceAfterWait() throws Exception {
90 public void testNoOpServiceStartStopIdempotenceDoubleWait() throws Exception {
103 throws Exception {
295 + "Exception status (possibly stale): " + thrownByExecutionThread,
340 public void testStopUnstartedService() throws Exception {
351 public void testThrowingServiceStartAndWait() throws Exception {
358 assertEquals(EXCEPTION, e.getCause());
362 public void testThrowingServiceStopAndWait_stopThrowing() throws Exception {
    [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-tests/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/elfutils/0.153/
Makefile.am 36 EXTRA_DIST = elfutils.spec GPG-KEY NOTES EXCEPTION
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ExceptionTest.java 41 * JDWP Unit test for caught EXCEPTION event.
49 * This testcase is for caught EXCEPTION event.
51 * The test verifies that requested EXCEPTION event occurs and reported exception
79 JDWPConstants.EventKind.EXCEPTION,
81 JDWPConstants.EventKind.getName(JDWPConstants.EventKind.EXCEPTION),
85 // assert that exception ObjectID is not null
87 assertTrue("Returned exception object is null.", returnedException.objectID != 0);
89 // assert that exception tag is OBJECT
91 assertEquals("Returned exception tag is not OBJECT.", JDWPConstants.Tag.OBJECT_TAG, returnedException.tag)
    [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",
  /external/chromium_org/v8/src/
json-stringifier.h 31 enum Result { UNCHANGED, SUCCESS, EXCEPTION };
265 DCHECK(result == EXCEPTION);
364 return EXCEPTION;
378 return EXCEPTION;
402 EXCEPTION);
472 EXCEPTION);
490 EXCEPTION);
502 isolate_, value, Execution::ToString(isolate_, object), EXCEPTION);
507 isolate_, value, Execution::ToNumber(isolate_, object), EXCEPTION);
614 EXCEPTION);
    [all...]
regexp-macro-assembler.h 179 // EXCEPTION: Something failed during execution. If no exception has been
181 // throw the exception.
185 enum Result { RETRY = -2, EXCEPTION = -1, FAILURE = 0, SUCCESS = 1 };
  /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...]
ASTParser.stg 45 retval.tree = (<ASTLabelType>)(ADAPTOR->errorNode(ADAPTOR, INPUT, retval.start, LT(-1), EXCEPTION));
AST.stg 384 EXCEPTION->type = ANTLR3_REWRITE_EARLY_EXCEPTION;
385 EXCEPTION->name = (void *)ANTLR3_REWRITE_EARLY_EXCEPTION_NAME;
  /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";
ParsedEvent.java 348 * The class implements JDWP EXCEPTION event.
352 private TaggedObject exception; field in class:ParsedEvent.Event_EXCEPTION
363 super(suspendPolicy, packet, JDWPConstants.EventKind.EXCEPTION);
364 exception = packet.getNextValueAsTaggedObject();
369 * @return Returns the location of the caught exception.
376 * @return Returns the exception.
379 return exception;
696 case JDWPConstants.EventKind.EXCEPTION: {
  /external/chromium_org/tools/auto_bisect/
request_build.py 42 SUCCESS, WARNINGS, FAILURE, SKIPPED, EXCEPTION, RETRY, TRYPENDING = range(7)
45 FAILED = (FAILURE, EXCEPTION, SKIPPED) # These indicate build failure.
49 class ServerAccessError(Exception):
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
LaunchedDebugger.java 70 protected void internalSetUp() throws Exception {
97 * Receives initial EXCEPTION event if debuggee is suspended on event.
102 debuggeeWrapper.vmMirror.receiveCertainEvent(JDWPConstants.EventKind.EXCEPTION);
103 logWriter.println("Received inital EXCEPTION event");
284 } catch (Exception e) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
JDWPEventModifierTestCase.java 70 * Creates an {@link EventBuilder} for EXCEPTION event and sets an
73 * @param exceptionClassSignature the signature of the exception class
74 * @param caught whether the exception must be caught
75 * @param uncaught whether the exception must be uncaught
80 byte eventKind = JDWPConstants.EventKind.EXCEPTION;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/network/chrome-firephp/
devtools.js 100 case "EXCEPTION":
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.event_1.2.0.v20100503.jar 
  /external/chromium_org/v8/src/arm/
regexp-macro-assembler-arm.cc 625 // Exit with OutOfMemory exception. There is not enough space on the stack
627 __ mov(r0, Operand(EXCEPTION));
831 // must exit with a stack-overflow exception.
841 // If any of the code above needed to exit with an exception.
843 // Exit with Result EXCEPTION(-1) to signal thrown exception.
844 __ mov(r0, Operand(EXCEPTION));
    [all...]
  /external/chromium_org/v8/src/ia32/
regexp-macro-assembler-ia32.cc 656 // Exit with OutOfMemory exception. There is not enough space on the stack
658 __ mov(eax, EXCEPTION);
882 // must exit with a stack-overflow exception.
894 // If any of the code above needed to exit with an exception.
896 // Exit with Result EXCEPTION(-1) to signal thrown exception.
897 __ mov(eax, EXCEPTION);
    [all...]
  /external/chromium_org/v8/src/mips/
regexp-macro-assembler-mips.cc 115 // If the code gets too big or corrupted, an internal exception will be
576 // space on trampolines, an internal exception flag is set. If this case
621 // Exit with OutOfMemory exception. There is not enough space on the stack
623 __ li(v0, Operand(EXCEPTION));
840 // must exit with a stack-overflow exception.
851 // If any of the code above needed to exit with an exception.
853 // Exit with Result EXCEPTION(-1) to signal thrown exception.
854 __ li(v0, Operand(EXCEPTION));
    [all...]

Completed in 585 milliseconds

1 2 3 4