Searched refs:catchLocation (Results 1 – 5 of 5) sorted by relevance
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
D | ExceptionCaughtTest.java | 235 Location catchLocation = exceptionEvent.getCatchLocation(); in runCatchLocationTest() local 236 printTestLog("returnedExceptionLoc = " + catchLocation); in runCatchLocationTest() 237 assertNotNull("Returned exception catch location is null,", catchLocation); in runCatchLocationTest() 243 assertFalse("Same throw and catch locations", catchLocation.equals(topFrameLoc)); in runCatchLocationTest() 250 if (debuggeeClassID != catchLocation.classID || in runCatchLocationTest() 251 debuggeeThrowMethodID != catchLocation.methodID) { in runCatchLocationTest() 258 builder.append(dumpLocation(catchLocation)); in runCatchLocationTest()
|
D | ExceptionUncaughtTest.java | 154 Location catchLocation = exceptionEvent.getCatchLocation(); in testExceptionUncaughtEvent_CatchLocation() local 155 printTestLog("returnedExceptionLoc = " + catchLocation); in testExceptionUncaughtEvent_CatchLocation() 156 assertNotNull("Returned exception catch location is null,", catchLocation); in testExceptionUncaughtEvent_CatchLocation() 159 if (!isNullLocation(catchLocation)) { in testExceptionUncaughtEvent_CatchLocation() 160 fail("Invalid catch location: expected null but got " + dumpLocation(catchLocation)); in testExceptionUncaughtEvent_CatchLocation()
|
D | BreakpointOnCatchTest.java | 68 Location catchLocation = ((Event_EXCEPTION) parsedEvents[0]).getCatchLocation(); in testBreakpointOnCatch() local 69 assertEquals("Invalid class ID:", classID, catchLocation.classID); in testBreakpointOnCatch() 70 assertEquals("Invalid method ID:", methodID, catchLocation.methodID); in testBreakpointOnCatch() 76 int requestID = requestBreakpointEvent(catchLocation); in testBreakpointOnCatch()
|
D | ExceptionWithLocationTest.java | 88 Location catchLocation = eventException.getCatchLocation(); in checkEvent() local 89 assertNotNull("Incorrect catch location", catchLocation); in checkEvent()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | ParsedEvent.java | 354 private Location catchLocation; field in ParsedEvent.Event_EXCEPTION 365 catchLocation = packet.getNextValueAsLocation(); in Event_EXCEPTION() 372 return catchLocation; in getCatchLocation()
|