Home
last modified time | relevance | path

Searched refs:line (Results 1 – 24 of 24) sorted by relevance

/dalvik/dx/tests/121-sccp/
Dexpected.txt19 0002: line 114
20 0004: line 115
21 0006: line 117
22 0008: line 119
23 000a: line 120
24 000e: line 121
25 0011: line 125
26 0014: line 123
50 0002: line 141
51 0004: line 142
[all …]
/dalvik/dexgen/src/com/android/dexgen/rop/code/
DSourcePosition.java44 private final int line; field in SourcePosition
56 public SourcePosition(CstUtf8 sourceFile, int address, int line) { in SourcePosition() argument
61 if (line < -1) { in SourcePosition()
67 this.line = line; in SourcePosition()
80 if (line >= 0) { in toString()
81 sb.append(line); in toString()
114 return sourceFile.hashCode() + address + line; in hashCode()
125 return (line == other.line); in sameLine()
136 return (line == other.line) && in sameLineAndFile()
166 return line; in getLine()
/dalvik/dx/src/com/android/dx/rop/code/
DSourcePosition.java44 private final int line; field in SourcePosition
56 public SourcePosition(CstString sourceFile, int address, int line) { in SourcePosition() argument
61 if (line < -1) { in SourcePosition()
67 this.line = line; in SourcePosition()
80 if (line >= 0) { in toString()
81 sb.append(line); in toString()
114 return sourceFile.hashCode() + address + line; in hashCode()
125 return (line == other.line); in sameLine()
136 return (line == other.line) && in sameLineAndFile()
166 return line; in getLine()
/dalvik/dx/src/com/android/dx/util/
DHexParser.java57 String line; in parse() local
59 line = src.substring(at, poundAt); in parse()
61 line = src.substring(at, nlAt); in parse()
65 int colonAt = line.indexOf(':'); in parse()
69 int quoteAt = line.indexOf('\"'); in parse()
74 String atStr = line.substring(0, colonAt).trim(); in parse()
75 line = line.substring(colonAt + 1); in parse()
83 int lineLen = line.length(); in parse()
88 char c = line.charAt(i); in parse()
/dalvik/dexgen/src/com/android/dexgen/util/
DHexParser.java57 String line; in parse() local
59 line = src.substring(at, poundAt); in parse()
61 line = src.substring(at, nlAt); in parse()
65 int colonAt = line.indexOf(':'); in parse()
69 int quoteAt = line.indexOf('\"'); in parse()
74 String atStr = line.substring(0, colonAt).trim(); in parse()
75 line = line.substring(colonAt + 1); in parse()
83 int lineLen = line.length(); in parse()
88 char c = line.charAt(i); in parse()
/dalvik/dx/tests/069-dex-source-position/
Dexpected.txt74 0000: line 20
75 0004: line 21
76 0006: line 29
77 line = 24
78 0007: line 24
79 0010: line 28
80 001b: line 29
81 001e: line 25
82 0020: line 26
124 0000: line 20
[all …]
/dalvik/dx/tests/138-invoke-polymorphic-again/
Dexpected.txt32 0000: line 34
33 0001: line 36
35 0008: line 37
37 0021: line 41
38 0023: line 42
40 002b: line 43
77 0000: line 46
78 0001: line 48
80 0008: line 49
82 0021: line 53
[all …]
/dalvik/opcode-gen/
Dopcode-gen.awk247 function readBytecodes(i, parts, line, cmd, status, count) {
251 status = getline line <bytecodeFile;
259 gsub(/ */, " ", line);
261 sub(/ $/, "", line);
262 sub(/^ /, "", line);
263 count = split(line, parts);
266 sub(/^[a-z][a-z]* */, "", line); # Remove the command from line.
269 status = defineOpcode(line);
271 status = defineFormat(line);
277 printf("syntax error on line: %s\n", line) >"/dev/stderr";
[all …]
Dbytecode.txt19 # One line per instruction format family. Each line consists of a
53 # One line per opcode. Columns are:
/dalvik/dx/tests/137-dexmerger-dex38/
Dexpected.txt25 0x0000 line=25
52 0x0000 line=27
53 0x0007 line=28
91 0x0000 line=98
110 0x0000 line=35
111 0x0003 line=111
112 0x0006 line=35
146 0x0000 line=36
147 0x0003 line=111
148 0x0006 line=37
[all …]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DDebugInfoDecoder.java75 private int line = 1; field in DebugInfoDecoder
134 public int line; field in DebugInfoDecoder.PositionEntry
136 public PositionEntry(int address, int line) { in PositionEntry() argument
138 this.line = line; in PositionEntry()
242 line = readUnsignedLeb128(bs); in decode0()
379 line += readSignedLeb128(bs); in decode0()
404 line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE); in decode0()
406 positions.add(new PositionEntry(address, line)); in decode0()
472 if (entry.line == ple.getPosition().getLine() in validateEncode0()
481 + entry.address + ", " + entry.line); in validateEncode0()
DDebugInfoEncoder.java76 private int line = 1; field in DebugInfoEncoder
377 line = entry.getPosition().getLine(); in emitHeader()
379 output.writeUnsignedLeb128(line); in emitHeader()
382 annotate(output.getCursor() - mark, "line_start: " + line); in emitHeader() local
781 int deltaLines = newLine - line; in emitPosition()
811 line += deltaLines; in emitPosition()
816 String.format("%04x: line %d", address, line)); in emitPosition()
855 line += deltaLines; in emitAdvanceLine()
859 String.format("line = %d", line)); in emitAdvanceLine()
/dalvik/dx/src/com/android/dx/dex/file/
DDebugInfoDecoder.java86 private int line = 1; field in DebugInfoDecoder
145 public int line; field in DebugInfoDecoder.PositionEntry
147 public PositionEntry(int address, int line) { in PositionEntry() argument
149 this.line = line; in PositionEntry()
253 line = Leb128.readUnsignedLeb128(bs); in decode0()
384 line += Leb128.readSignedLeb128(bs); in decode0()
409 line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE); in decode0()
411 positions.add(new PositionEntry(address, line)); in decode0()
477 if (entry.line == ple.getPosition().getLine() in validateEncode0()
486 + entry.address + ", " + entry.line); in validateEncode0()
DDebugInfoEncoder.java84 private int line = 1; field in DebugInfoEncoder
385 line = entry.getPosition().getLine(); in emitHeader()
387 output.writeUleb128(line); in emitHeader()
390 annotate(output.getCursor() - mark, "line_start: " + line); in emitHeader() local
793 int deltaLines = newLine - line; in emitPosition()
823 line += deltaLines; in emitPosition()
828 String.format("%04x: line %d", address, line)); in emitPosition()
867 line += deltaLines; in emitAdvanceLine()
871 String.format("line = %d", line)); in emitAdvanceLine()
/dalvik/dx/tests/132-invoke-polymorphic/
Dexpected.txt418 | 0000: line 19
439 | 0000: line 54
458 | 0000: line 45
479 | 0000: line 59
498 | 0000: line 49
522 | 0000: line 90
541 | 0000: line 33
560 | 0000: line 41
581 | 0000: line 79
582 | 0004: line 80
[all …]
/dalvik/dx/src/com/android/dx/dex/cf/
DOptimizerOptions.java96 String line; in loadStringsFromFile() local
98 while (null != (line = bfr.readLine())) { in loadStringsFromFile()
99 result.add(line); in loadStringsFromFile()
/dalvik/dx/tests/021-code-attrib-LineNumberTable/
Dsmall-class.txt48 0000 0011 # offset 0000, line #17
49 0001 0022 # offset 0001, line #34
/dalvik/dx/tests/135-invoke-custom/
Dexpected.txt1162 | 0000: line 29
1207 | 0000: line 31
1208 | 0007: line 32
1235 | 0000: line 102
1270 | 0000: line 39
1271 | line = 115
1272 | 0003: line 115
1273 | line = 39
1274 | 0006: line 39
1389 | 0000: line 40
[all …]
/dalvik/dx/tests/139-lambda-metafactory/
Dexpected.txt320 | 0000: line 21
345 | 0000: line 24
369 | 0000: line 24
370 | 0004: line 25
372 | 000c: line 26
389 | 0000: line 29
409 | 0000: line 31
410 | 0009: line 32
619 0005e1: 0e |0000: line 21
628 0005e8: 0e |0000: line 24
[all …]
/dalvik/dx/tests/122-switch-with-high-register/
Dexpected.txt543 0000: line 9
544 0001: line 12
546 01fa: line 16
547 line = 28
548 01ff: line 28
549 line = 18
550 0201: line 18
551 0203: line 20
552 0205: line 22
553 0207: line 24
[all …]
/dalvik/tools/dexdeps/
DREADME.txt23 "brief" produces one line of output for each field and method. Field
/dalvik/docs/
Dprettify.js711 // 'single-line-string', "single-line-string"
/dalvik/dx/src/com/android/dx/command/dexer/
DMain.java438 String line; in readPathsFromFile() local
440 while (null != (line = bfr.readLine())) { in readPathsFromFile()
441 paths.add(fixPath(line)); in readPathsFromFile()
/dalvik/dx/tests/087-ssa-local-vars/
Dexpected.txt906 Blort.java:81@009b: const-object("Maximum line length limit exceeded" catch)
915 tch) . <- v88:N0097Ljava/io/IOException; v89:Ljava/lang/String;="Maximum line
1117 :Ljava/lang/String;="Maximum line length limit exceeded" <- .