Home
last modified time | relevance | path

Searched refs:throwLocation (Results 1 – 2 of 2) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DExceptionUncaughtTest.java93 Location throwLocation = exceptionEvent.getLocation(); in testExceptionUncaughtEvent_ThrowLocation() local
100 printTestLog("returnedExceptionLoc = " + throwLocation); in testExceptionUncaughtEvent_ThrowLocation()
101 assertNotNull("Returned exception location is null,", throwLocation); in testExceptionUncaughtEvent_ThrowLocation()
110 throwLocation.equals(topFrameLoc)); in testExceptionUncaughtEvent_ThrowLocation()
115 if (debuggeeClassID != throwLocation.classID || in testExceptionUncaughtEvent_ThrowLocation()
116 debuggeeThrowMethodID != throwLocation.methodID) { in testExceptionUncaughtEvent_ThrowLocation()
123 builder.append(dumpLocation(throwLocation)); in testExceptionUncaughtEvent_ThrowLocation()
DExceptionCaughtTest.java179 Location throwLocation = exceptionEvent.getLocation(); in runThrowLocationTest() local
186 printTestLog("returnedExceptionLoc = " + throwLocation); in runThrowLocationTest()
187 assertNotNull("Returned exception location is null,", throwLocation); in runThrowLocationTest()
195 assertEquals("Different exception and top frame location tag,", topFrameLoc, throwLocation); in runThrowLocationTest()
203 if (debuggeeClassID != throwLocation.classID || in runThrowLocationTest()
204 debuggeeThrowMethodID != throwLocation.methodID) { in runThrowLocationTest()
211 builder.append(dumpLocation(throwLocation)); in runThrowLocationTest()