Searched refs:line (Results 1 - 14 of 14) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DSourcePosition.java24 * line number and original bytecode address.
41 * {@code >= -1;} the line number, or {@code -1} if that
44 private final int line; field in class:SourcePosition
53 * @param line {@code >= -1;} original line number or {@code -1} if
56 public SourcePosition(CstUtf8 sourceFile, int address, int line) { argument
61 if (line < -1) {
62 throw new IllegalArgumentException("line < -1");
67 this.line = line;
[all...]
/dalvik/dx/src/com/android/dx/rop/code/
H A DSourcePosition.java24 * line number and original bytecode address.
41 * {@code >= -1;} the line number, or {@code -1} if that
44 private final int line; field in class:SourcePosition
53 * @param line {@code >= -1;} original line number or {@code -1} if
56 public SourcePosition(CstString sourceFile, int address, int line) { argument
61 if (line < -1) {
62 throw new IllegalArgumentException("line < -1");
67 this.line = line;
[all...]
/dalvik/dexgen/src/com/android/dexgen/util/
H A DHexParser.java32 * corresponding to the text. The format is simple: Each line may
36 * is encountered, it and the rest of the line are ignored as a
57 String line;
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
65 int colonAt = line.indexOf(':');
69 int quoteAt = line.indexOf('\"');
74 String atStr = line.substring(0, colonAt).trim();
75 line = line
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DHexParser.java32 * corresponding to the text. The format is simple: Each line may
36 * is encountered, it and the rest of the line are ignored as a
57 String line;
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
65 int colonAt = line.indexOf(':');
69 int quoteAt = line.indexOf('\"');
74 String atStr = line.substring(0, colonAt).trim();
75 line = line
[all...]
/dalvik/opcode-gen/
H A Dopcode-gen.awk247 function readBytecodes(i, parts, line, cmd, status, count) {
248 # locals: parts, line, cmd, status, count
250 # Read a line.
251 status = getline line <bytecodeFile;
258 # Clean up the line and extract the command.
259 gsub(/ */, " ", line);
260 sub(/ *#.*$/, "", line);
261 sub(/ $/, "", line);
262 sub(/^ /, "", line);
263 count = split(line, part
[all...]
/dalvik/dx/src/com/android/dx/dex/cf/
H A DOptimizerOptions.java35 * specified on the command line
42 * command line
96 String line;
98 while (null != (line = bfr.readLine())) {
99 result.add(line);
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDebugInfoDecoder.java74 /** current decoding state: line number */
75 private int line = 1; field in class:DebugInfoDecoder
133 /** line number */
134 public int line; field in class:DebugInfoDecoder.PositionEntry
136 public PositionEntry(int address, int line) { argument
138 this.line = line;
242 line = readUnsignedLeb128(bs);
379 line += readSignedLeb128(bs);
404 line
[all...]
H A DDebugInfoEncoder.java46 * <li> signed LEB128: initial value for line register.
58 /** {@code null-ok;} positions (line numbers) to encode */
75 /** current encoding state: line number */
76 private int line = 1; field in class:DebugInfoEncoder
87 /** if non-null: the prefix for each annotation or debugPrint line */
99 * @param positions {@code null-ok;} positions (line numbers) to encode
173 * @param prefix {@code null-ok;} prefix to attach to each line of output
228 int nextAddrP = Integer.MAX_VALUE; // position (line number)
362 * line number and string indicies for names of all non-"this" arguments.
374 // Start by initializing the line numbe
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoDecoder.java85 /** current decoding state: line number */
86 private int line = 1; field in class:DebugInfoDecoder
144 /** line number */
145 public int line; field in class:DebugInfoDecoder.PositionEntry
147 public PositionEntry(int address, int line) { argument
149 this.line = line;
253 line = Leb128.readUnsignedLeb128(bs);
384 line += Leb128.readSignedLeb128(bs);
409 line
[all...]
H A DDebugInfoEncoder.java54 * <li> signed LEB128: initial value for line register.
66 /** {@code null-ok;} positions (line numbers) to encode */
83 /** current encoding state: line number */
84 private int line = 1; field in class:DebugInfoEncoder
95 /** if non-null: the prefix for each annotation or debugPrint line */
107 * @param positions {@code null-ok;} positions (line numbers) to encode
181 * @param prefix {@code null-ok;} prefix to attach to each line of output
236 int nextAddrP = Integer.MAX_VALUE; // position (line number)
370 * line number and string indicies for names of all non-"this" arguments.
382 // Start by initializing the line numbe
[all...]
/dalvik/libdex/
H A DDexDebugInfo.cpp101 u4 line = readUnsignedLeb128(&stream); local
171 line += readSignedLeb128(&stream);
241 line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE);
245 done = posCb(cnxt, address, line);
/dalvik/docs/
H A Dprettify.js175 * embedding of line numbers within code listings.
701 // '''multi-line-string''', 'single-line-string', and double-quoted
706 // 'multi-line-string', "multi-line-string"
711 // 'single-line-string', "single-line-string"
1232 // Replace <br>s with line-feeds so that copying and pasting works
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java169 /** {@code non-null;} parsed command-line arguments */
237 * @param argArray the command line arguments
438 String line;
440 while (null != (line = bfr.readLine())) {
441 paths.add(fixPath(line));
1250 * Command-line argument parser and access.
1613 * Parses all command-line arguments and updates the state of the {@code Arguments} object
1675 * Parses only command-line flags and updates the state of the {@code Arguments} object

Completed in 385 milliseconds