Searched defs:positions (Results 1 - 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/code/
H A DDalvCode.java54 * null-ok; source positions list; set in
57 private PositionList positions; field in class:DalvCode
95 this.positions = null;
109 positions = PositionList.make(insns, positionInfo);
200 * Gets the source positions list.
202 * @return non-null; the source positions list
206 return positions;
210 * Gets the source positions list.
212 * @return non-null; the source positions list
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoDecoder.java47 /** positions decoded */
48 private final ArrayList<PositionEntry> positions; field in class:DebugInfoDecoder
106 positions = new ArrayList<PositionEntry>();
182 * Gets the decoded positions list.
185 * @return positions list in ascending address order.
188 return positions;
406 positions.add(new PositionEntry(address, line));
463 "Decoded positions table not same size was "
H A DDebugInfoEncoder.java58 /** null-ok; positions (line numbers) to encode */
59 private final PositionList positions; field in class:DebugInfoEncoder
99 * @param pl null-ok; positions (line numbers) to encode
111 this.positions = pl;
341 * Emits all positions that occur at the current <code>address</code>
344 * @param sortedPositions positions, sorted by ascending address
364 * @param sortedPositions positions, sorted by ascending address
484 * @return A sorted positions list
487 int sz = (positions == null) ? 0 : positions
[all...]

Completed in 211 milliseconds