Home
last modified time | relevance | path

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

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DExceptionCaughtTest.java190 Location topFrameLoc = getTopFrameLocation(returnedThread); in runThrowLocationTest() local
191 printTestLog("topFrameLoc = " + topFrameLoc); in runThrowLocationTest()
192 assertNotNull("Returned top stack frame location is null,", topFrameLoc); in runThrowLocationTest()
195 assertEquals("Different exception and top frame location tag,", topFrameLoc, throwLocation); in runThrowLocationTest()
239 Location topFrameLoc = getTopFrameLocation(returnedThread); in runCatchLocationTest() local
240 printTestLog("topFrameLoc = " + topFrameLoc); in runCatchLocationTest()
241 assertNotNull("Returned top stack frame location is null,", topFrameLoc); in runCatchLocationTest()
242 assertFalse("Same throw and catch locations", catchLocation.equals(topFrameLoc)); in runCatchLocationTest()
DExceptionUncaughtTest.java104 Location topFrameLoc = getTopFrameLocation(returnedThread); in testExceptionUncaughtEvent_ThrowLocation() local
105 printTestLog("topFrameLoc = " + topFrameLoc); in testExceptionUncaughtEvent_ThrowLocation()
106 assertNotNull("Returned top stack frame location is null,", topFrameLoc); in testExceptionUncaughtEvent_ThrowLocation()
110 throwLocation.equals(topFrameLoc)); in testExceptionUncaughtEvent_ThrowLocation()