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

  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/
EndLocalMethodItem.java 34 import org.jf.baksmali.Adaptors.RegisterFormatter;
43 @Nonnull private final RegisterFormatter registerFormatter;
45 public EndLocalMethodItem(int codeAddress, int sortOrder, @Nonnull RegisterFormatter registerFormatter,
49 this.registerFormatter = registerFormatter;
55 registerFormatter.writeTo(writer, endLocal.getRegister());
RestartLocalMethodItem.java 34 import org.jf.baksmali.Adaptors.RegisterFormatter;
43 @Nonnull private final RegisterFormatter registerFormatter;
45 public RestartLocalMethodItem(int codeAddress, int sortOrder, @Nonnull RegisterFormatter registerFormatter,
49 this.registerFormatter = registerFormatter;
55 registerFormatter.writeTo(writer, restartLocal.getRegister());
StartLocalMethodItem.java 34 import org.jf.baksmali.Adaptors.RegisterFormatter;
43 @Nonnull private final RegisterFormatter registerFormatter;
45 public StartLocalMethodItem(int codeAddress, int sortOrder, @Nonnull RegisterFormatter registerFormatter,
49 this.registerFormatter = registerFormatter;
55 registerFormatter.writeTo(writer, startLocal.getRegister());
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PostInstructionRegisterInfoMethodItem.java 41 @Nonnull private final RegisterFormatter registerFormatter;
44 public PostInstructionRegisterInfoMethodItem(@Nonnull RegisterFormatter registerFormatter,
48 this.registerFormatter = registerFormatter;
59 int registerInfo = registerFormatter.options.registerInfo;
95 registerFormatter.writeTo(writer, registerNum);
PreInstructionRegisterInfoMethodItem.java 45 @Nonnull private final RegisterFormatter registerFormatter;
50 @Nonnull RegisterFormatter registerFormatter,
56 this.registerFormatter = registerFormatter;
174 registerFormatter.writeTo(writer, registerNum);
231 registerFormatter.writeTo(writer, registerNum);
MethodDefinition.java 69 public RegisterFormatter registerFormatter;
196 if (registerFormatter == null) {
197 registerFormatter = new RegisterFormatter(classDef.options, methodImpl.getRegisterCount(),
457 methodAnalyzer, registerFormatter, instruction, currentCodeAddress));
460 new PostInstructionRegisterInfoMethodItem(registerFormatter, instruction, currentCodeAddress));
517 methodItems.add(DebugMethodItem.build(registerFormatter, debugItem));
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
InstructionMethodItem.java 368 methodDef.registerFormatter.writeTo(writer, registerNumber);
436 methodDef.registerFormatter.writeRegisterRange(writer, startRegister, startRegister+regCount-1);

Completed in 69 milliseconds