Searched refs:endedLocal (Results 1 – 2 of 2) sorted by relevance
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
D | LocalList.java | 695 public void endLocal(int address, RegisterSpec endedLocal) { in endLocal() argument 696 endLocal(address, endedLocal, Disposition.END_SIMPLY); in endLocal() 707 public void endLocal(int address, RegisterSpec endedLocal, in endLocal() argument 710 System.err.printf("%04x end %s\n", address, endedLocal); in endLocal() 713 int regNum = endedLocal.getReg(); in endLocal() 715 endedLocal = filterSpec(endedLocal); in endLocal() 729 if (checkForEmptyRange(address, endedLocal)) { in endLocal() 733 add(address, disposition, endedLocal); in endLocal() 752 RegisterSpec endedLocal) { in checkForEmptyRange() argument 769 if (entry.matches(endedLocal)) { in checkForEmptyRange() [all …]
|
/dalvik/dx/src/com/android/dx/dex/code/ |
D | LocalList.java | 694 public void endLocal(int address, RegisterSpec endedLocal) { in endLocal() argument 695 endLocal(address, endedLocal, Disposition.END_SIMPLY); in endLocal() 706 public void endLocal(int address, RegisterSpec endedLocal, in endLocal() argument 709 System.err.printf("%04x end %s\n", address, endedLocal); in endLocal() 712 int regNum = endedLocal.getReg(); in endLocal() 714 endedLocal = filterSpec(endedLocal); in endLocal() 728 if (checkForEmptyRange(address, endedLocal)) { in endLocal() 732 add(address, disposition, endedLocal); in endLocal() 751 RegisterSpec endedLocal) { in checkForEmptyRange() argument 768 if (entry.matches(endedLocal)) { in checkForEmptyRange() [all …]
|