Searched refs:lineMapper (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DConcreteMethodImpl.java47 final Map lineMapper; // Maps line number to location(s) field in class:ConcreteMethodImpl.SoftLocationXRefs
54 * checking and with lineMapper.
59 SoftLocationXRefs(String stratumID, Map lineMapper, List lineLocations, argument
62 this.lineMapper = Collections.unmodifiableMap(lineMapper);
100 Map lineMapper = new HashMap();
144 List mappedLocs = (List)lineMapper.get(key);
147 lineMapper.put(key, mappedLocs);
154 lineMapper, lineLocations,
187 Map lineMapper
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DConcreteMethodImpl.java51 final Map<Integer, List<Location>> lineMapper; // Maps line number to location(s) field in class:ConcreteMethodImpl.SoftLocationXRefs
58 * checking and with lineMapper.
63 SoftLocationXRefs(String stratumID, Map<Integer, List<Location>> lineMapper, List<Location> lineLocations, argument
66 this.lineMapper = Collections.unmodifiableMap(lineMapper);
146 List<Location> list = info.lineMapper.get(new Integer(lineNumber));
288 Map<Integer, List<Location>> lineMapper = new HashMap<Integer, List<Location>>();
333 List<Location> mappedLocs = lineMapper.get(key);
336 lineMapper.put(key, mappedLocs);
343 lineMapper, lineLocation
[all...]

Completed in 204 milliseconds