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

/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DLocalList.java692 * @param endedLocal {@code non-null;} spec representing the
695 public void endLocal(int address, RegisterSpec endedLocal) { argument
696 endLocal(address, endedLocal, Disposition.END_SIMPLY);
703 * @param endedLocal {@code non-null;} spec representing the
707 public void endLocal(int address, RegisterSpec endedLocal, argument
710 System.err.printf("%04x end %s\n", address, endedLocal);
713 int regNum = endedLocal.getReg();
715 endedLocal = filterSpec(endedLocal);
729 if (checkForEmptyRange(address, endedLocal)) {
751 checkForEmptyRange(int address, RegisterSpec endedLocal) argument
[all...]

Completed in 41 milliseconds