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

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
CombinedEventsTestCase.java 201 Location eventLocation = null;
204 eventLocation = ((ParsedEvent.Event_METHOD_ENTRY)parsedEvent).getLocation();
208 eventLocation = ((ParsedEvent.Event_SINGLE_STEP)parsedEvent).getLocation();
212 eventLocation = ((ParsedEvent.Event_BREAKPOINT)parsedEvent).getLocation();
216 eventLocation = ((ParsedEvent.Event_METHOD_EXIT)parsedEvent).getLocation();
220 eventLocation =
238 long eventClassID = eventLocation.classID;
249 long eventMethodID = eventLocation.methodID;
260 long eventCodeIndex = eventLocation.index;
CombinedEvents003Test.java 288 Location eventLocation = null;
291 eventLocation = ((ParsedEvent.Event_METHOD_ENTRY)parsedEvents[i]).getLocation();
294 eventLocation = ((ParsedEvent.Event_SINGLE_STEP)parsedEvents[i]).getLocation();
297 eventLocation = ((ParsedEvent.Event_BREAKPOINT)parsedEvents[i]).getLocation();
300 eventLocation = ((ParsedEvent.Event_METHOD_EXIT)parsedEvents[i]).getLocation();
303 long eventClassID = eventLocation.classID;
312 long eventMethodID = eventLocation.methodID;
321 long eventCodeIndex = eventLocation.index;
CombinedEventsTest.java     [all...]
EventWithExceptionTest.java 110 Location eventLocation = ((ParsedEvent.EventThreadLocation) breakpointEvent).getLocation();
111 assertEquals("Not the expected location", catchHandlerLocation, eventLocation);
170 Location eventLocation = ((ParsedEvent.EventThreadLocation) breakpointEvent).getLocation();
171 assertEquals("Not the expected location", catchHandlerLocation, eventLocation);
264 Location eventLocation = ((ParsedEvent.EventThreadLocation) singleStepEvent).getLocation();
265 assertEquals("Not the expected location, ", catchHandlerLocation, eventLocation);
317 Location eventLocation =
319 assertNotNull(eventLocation);
322 assertEquals("Invalid class ID", classId, eventLocation.classID);
323 assertEquals("Invalid method ID", methodId, eventLocation.methodID)
    [all...]

Completed in 97 milliseconds