/dalvik/dx/src/com/android/dx/rop/code/ |
H A D | SourcePosition.java | 24 * 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/hit/src/com/android/hit/ |
H A D | StackFrame.java | 33 int serial, int line) { 39 mLineNumber = line; 44 case NO_LINE_NUMBER: return "No line number"; 45 case UNKNOWN_LOCATION: return "Unknown line number"; 32 StackFrame(long id, String method, String sig, String file, int serial, int line) argument
|
/dalvik/vm/ |
H A D | Debugger.h | 37 * a single line. 72 int line; /* line #; could be -1 */ member in struct:StepControl 73 const AddressSet* pAddressSet; /* if non-null, address set for line */ 292 /* Make an AddressSet for a line, for single stepping */ 293 const AddressSet *dvmAddressSetForLine(const struct Method* method, int line);
|
H A D | Debugger.c | 1352 * For Method.LineTable: output the line table. 2962 // Everything from this address until the next line change is ours 2968 } else if (pContext->lastAddressValid) { // and the line number is new 2978 // there may be multiple entries for a line 2982 * Build up a set of bytecode addresses associated with a line number 2984 const AddressSet *dvmAddressSetForLine(const Method* method, int line) argument 2996 context.lineNum = line; 3005 // If the line number was the last in the position table...
|
/dalvik/dx/src/com/android/dx/dex/file/ |
H A D | DebugInfoDecoder.java | 74 /** 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 D | DebugInfoEncoder.java | 46 * <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/junit/runner/ |
H A D | BaseTestRunner.java | 136 * Processes the command line arguments and 285 String line; 287 while ((line= br.readLine()) != null) { 288 if (!filterLine(line)) 289 pw.println(line); 301 static boolean filterLine(String line) { argument 313 if (line.indexOf(patterns[i]) > 0)
|
/dalvik/vm/compiler/template/ |
H A D | gen-template.py | 155 for line in opcode_fp: 156 match = opcode_re.match(line) 225 for line in asm_stub_text: 226 templ = Template(line) 230 # Append the file specified by "source" to the open "outfp". Each line will 233 # If the first line of the file starts with "%" it is taken as a directive. 234 # A "%include" line contains a filename and, optionally, a Python-style 238 # If "sister_list" is provided, and we find a line that contains only "&", 248 for line in infp: 249 if line 383 line = line.strip() # remove CRLF, leading spaces variable [all...] |
/dalvik/vm/mterp/ |
H A D | gen-mterp.py | 160 for line in opcode_fp: 161 match = opcode_re.match(line) 277 for line in asm_stub_text: 278 templ = Template(line) 282 # Append the file specified by "source" to the open "outfp". Each line will 285 # If the first line of the file starts with "%" it is taken as a directive. 286 # A "%include" line contains a filename and, optionally, a Python-style 290 # If "sister_list" is provided, and we find a line that contains only "&", 300 for line in infp: 301 if line 437 line = line.strip() # remove CRLF, leading spaces variable [all...] |
/dalvik/libdex/ |
H A D | DexFile.c | 858 u4 line; local 871 line = readUnsignedLeb128(&stream); 940 line += readSignedLeb128(&stream); 1000 line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE); 1004 done = posCb(cnxt, address, line);
|
/dalvik/dx/etc/ |
H A D | jasmin.jar | META-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ... |