HomeSort by relevance Sort by last modified time
    Searched defs:codeItem (Results 1 - 6 of 6) sorted by null

  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ClassDataItem.java 721 * The <code>CodeItem</code> containing the code for this method, or null if there is no code for this method
724 public final CodeItem codeItem;
730 * @param codeItem The <code>CodeItem</code> containing the code for this method, or null if there is no code
733 public EncodedMethod(MethodIdItem method, int accessFlags, CodeItem codeItem) {
736 this.codeItem = codeItem;
737 if (codeItem != null)
    [all...]
CodeItem.java 40 public class CodeItem extends Item<CodeItem> {
52 * Creates a new uninitialized <code>CodeItem</code>
55 public CodeItem(DexFile dexFile) {
60 * Creates a new <code>CodeItem</code> with the given values.
70 private CodeItem(DexFile dexFile,
94 * Returns a new <code>CodeItem</code> with the given values.
103 * @return a new <code>CodeItem</code> with the given values.
105 public static CodeItem internCodeItem(DexFile dexFile,
132 CodeItem codeItem = new CodeItem(dexFile, registerCount, inWords, outWords, debugInfo, instructionsArray
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
InstructionMethodItem.java 39 import org.jf.dexlib.CodeItem;
45 protected final CodeItem codeItem;
48 public InstructionMethodItem(CodeItem codeItem, int codeAddress, T instruction) {
50 this.codeItem = codeItem;
248 RegisterFormatter.writeTo(writer, codeItem, registerNumber);
316 RegisterFormatter.writeRegisterRange(writer, codeItem, startRegister, startRegister+regCount-1);
  /external/smali/smali/src/main/java/org/jf/smali/
main.java 36 import org.jf.dexlib.CodeItem;
270 for (CodeItem codeItem: dexFile.CodeItemsSection.getItems()) {
271 codeItem.fixInstructions(fixJumbo, fixGoto);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java 70 if (encodedMethod.codeItem != null) {
71 Instruction[] instructions = encodedMethod.codeItem.getInstructions();
108 final CodeItem codeItem = encodedMethod.codeItem;
117 if (codeItem != null) {
125 writeParameters(writer, codeItem, parameterAnnotations);
138 writeParameters(writer, codeItem, parameterAnnotations);
149 int totalRegisters = encodedMethod.codeItem.getRegisterCount();
168 private static void writeParameters(IndentingWriter writer, CodeItem codeItem
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
MethodAnalyzer.java 79 if (encodedMethod.codeItem == null || encodedMethod.codeItem.getInstructions().length == 0) {
96 startOfMethod = new AnalyzedInstruction(null, -1, encodedMethod.codeItem.getRegisterCount()) {
133 assert encodedMethod.codeItem != null;
140 CodeItem codeItem = encodedMethod.codeItem;
143 int totalRegisters = codeItem.getRegisterCount();
353 CodeItem codeItem = encodedMethod.codeItem
    [all...]

Completed in 2185 milliseconds