HomeSort by relevance Sort by last modified time
    Searched defs:catchLocation (Results 1 - 7 of 7) sorted by null

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
BreakpointOnCatchTest.java 68 Location catchLocation = ((Event_EXCEPTION) parsedEvents[0]).getCatchLocation();
69 assertEquals("Invalid class ID:", classID, catchLocation.classID);
70 assertEquals("Invalid method ID:", methodID, catchLocation.methodID);
76 int requestID = requestBreakpointEvent(catchLocation);
ExceptionWithLocationTest.java 88 Location catchLocation = eventException.getCatchLocation();
89 assertNotNull("Incorrect catch location", catchLocation);
ExceptionUncaughtTest.java 154 Location catchLocation = exceptionEvent.getCatchLocation();
155 printTestLog("returnedExceptionLoc = " + catchLocation);
156 assertNotNull("Returned exception catch location is null,", catchLocation);
159 if (!isNullLocation(catchLocation)) {
160 fail("Invalid catch location: expected null but got " + dumpLocation(catchLocation));
ExceptionCaughtTest.java 235 Location catchLocation = exceptionEvent.getCatchLocation();
236 printTestLog("returnedExceptionLoc = " + catchLocation);
237 assertNotNull("Returned exception catch location is null,", catchLocation);
243 assertFalse("Same throw and catch locations", catchLocation.equals(topFrameLoc));
250 if (debuggeeClassID != catchLocation.classID ||
251 debuggeeThrowMethodID != catchLocation.methodID) {
258 builder.append(dumpLocation(catchLocation));
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
ParsedEvent.java 354 private Location catchLocation;
365 catchLocation = packet.getNextValueAsLocation();
372 return catchLocation;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 
jdimodel.jar 

Completed in 383 milliseconds