OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
286
Location
eventLocation
= null;
289
eventLocation
= ((ParsedEvent.Event_METHOD_ENTRY)parsedEvents[i]).getLocation();
292
eventLocation
= ((ParsedEvent.Event_SINGLE_STEP)parsedEvents[i]).getLocation();
295
eventLocation
= ((ParsedEvent.Event_BREAKPOINT)parsedEvents[i]).getLocation();
298
eventLocation
= ((ParsedEvent.Event_METHOD_EXIT)parsedEvents[i]).getLocation();
301
long eventClassID =
eventLocation
.classID;
310
long eventMethodID =
eventLocation
.methodID;
319
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 149 milliseconds