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

/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DDalvCode.java54 * {@code 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 {@code non-null;} the source positions list
206 return positions;
210 * Gets the source positions list.
212 * @return {@code non-null;} the source positions list
/dalvik/dx/src/com/android/dx/dex/code/
H A DDalvCode.java53 * {@code null-ok;} source positions list; set in
56 private PositionList positions; field in class:DalvCode
94 this.positions = null;
108 positions = PositionList.make(insns, positionInfo);
199 * Gets the source positions list.
201 * @return {@code non-null;} the source positions list
205 return positions;
209 * Gets the source positions list.
211 * @return {@code non-null;} the source positions list
/dalvik/dexgen/src/com/android/dexgen/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 /** {@code null-ok;} positions (line numbers) to encode */
59 private final PositionList positions; field in class:DebugInfoEncoder
99 * @param positions {@code null-ok;} positions (line numbers) to encode
108 public DebugInfoEncoder(PositionList positions, LocalList locals, argument
111 this.positions = positions;
341 * Emits all positions that occur at the current {@code address}
344 * @param sortedPositions positions, sorted by ascending address
364 * @param sortedPositions positions, sorte
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoDecoder.java58 /** positions decoded */
59 private final ArrayList<PositionEntry> positions; field in class:DebugInfoDecoder
117 positions = new ArrayList<PositionEntry>();
193 * Gets the decoded positions list.
196 * @return positions list in ascending address order.
199 return positions;
410 positions.add(new PositionEntry(address, line));
467 "Decoded positions table not same size was "
H A DDebugInfoEncoder.java66 /** {@code null-ok;} positions (line numbers) to encode */
67 private final PositionList positions; field in class:DebugInfoEncoder
107 * @param positions {@code null-ok;} positions (line numbers) to encode
116 public DebugInfoEncoder(PositionList positions, LocalList locals, argument
119 this.positions = positions;
349 * Emits all positions that occur at the current {@code address}
352 * @param sortedPositions positions, sorted by ascending address
372 * @param sortedPositions positions, sorte
[all...]

Completed in 73 milliseconds