Home
last modified time | relevance | path

Searched refs:codeIndex (Results 1 – 5 of 5) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DFrame.java205 private long codeIndex; field in Frame.Variable
224 codeIndex = -1; in Variable()
239 return codeIndex; in getCodeIndex()
247 public void setCodeIndex(long codeIndex) { in setCodeIndex() argument
248 this.codeIndex = codeIndex; in setCodeIndex()
487 return "Variable: codeIndex=" + codeIndex + ", name=" + name in toString()
510 return this.codeIndex == var.codeIndex in equals()
DVmMirror.java2337 public final int getLineNumber(long classID, long methodID, long codeIndex) { in getLineNumber() argument
2350 if (lineCodeIndex == codeIndex) { in getLineNumber()
2354 if (lineCodeIndex > codeIndex) { in getLineNumber()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
DJDWPMethodVariableTableTestCase.java328 long codeIndex = reply.getNextValueAsLong(); in checkMethodVariableTable() local
329 logWriter.println("codeIndex = " + codeIndex); in checkMethodVariableTable()
363 assertEquals("Invalid codeIndex " + codeIndex + " for parameter \"" + in checkMethodVariableTable()
364 name + "\"", 0, codeIndex); in checkMethodVariableTable()
371 assertTrue("Invalid codeIndex " + codeIndex + " for local var \"" + in checkMethodVariableTable()
372 name + "\"", codeIndex >= 0); in checkMethodVariableTable()
/external/javassist/src/main/javassist/bytecode/
DClassFileWriter.java315 protected int codeIndex; field in ClassFileWriter.MethodWriter
328 codeIndex = 0; in MethodWriter()
384 if (codeIndex == 0) in begin()
385 codeIndex = constPool.addUtf8Info(CodeAttribute.tag); in begin()
388 output.writeShort(codeIndex); in begin()
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/
DSmaliPositionManager.java65 int codeIndex) throws NoDataException { in getSourcePosition() argument
82 return smaliMethod.getSourcePositionForCodeOffset(codeIndex * 2); in getSourcePosition()
97 location.method().signature(), (int)location.codeIndex()); in getSourcePosition()