HomeSort by relevance Sort by last modified time
    Searched refs:StartLocal (Results 1 - 10 of 10) sorted by null

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/debug/
StartLocal.java 39 public interface StartLocal extends DebugItem, LocalInfo {
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/
StartLocalMethodItem.java 35 import org.jf.dexlib2.iface.debug.StartLocal;
42 @Nonnull private final StartLocal startLocal;
46 @Nonnull StartLocal startLocal) {
48 this.startLocal = startLocal;
55 registerFormatter.writeTo(writer, startLocal.getRegister());
57 String name = startLocal.getName();
58 String type = startLocal.getType()
    [all...]
DebugMethodItem.java 54 return new StartLocalMethodItem(codeAddress, -1, registerFormatter, (StartLocal)debugItem);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
ImmutableStartLocal.java 37 import org.jf.dexlib2.iface.debug.StartLocal;
44 public class ImmutableStartLocal extends ImmutableDebugItem implements StartLocal {
63 public static ImmutableStartLocal of(@Nonnull StartLocal startLocal) {
64 if (startLocal instanceof ImmutableStartLocal) {
65 return (ImmutableStartLocal)startLocal;
68 startLocal.getCodeAddress(),
69 startLocal.getRegister(),
70 startLocal.getName(),
71 startLocal.getType()
    [all...]
ImmutableDebugItem.java 57 return ImmutableStartLocal.of((StartLocal)debugItem);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
DebugItemRewriter.java 52 return new RewrittenStartLocal((StartLocal)value);
90 protected class RewrittenStartLocal extends BaseRewrittenLocalInfoDebugItem<StartLocal> implements StartLocal {
91 public RewrittenStartLocal(@Nonnull StartLocal debugItem) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/debug/
BuilderStartLocal.java 36 import org.jf.dexlib2.iface.debug.StartLocal;
42 public class BuilderStartLocal extends BuilderDebugItem implements StartLocal {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ClassPool.java 176 StartLocal startLocal = (StartLocal)debugItem;
177 dexPool.stringSection.internNullable(startLocal.getName());
178 dexPool.typeSection.internNullable(startLocal.getType());
179 dexPool.stringSection.internNullable(startLocal.getSignature());
458 StartLocal startLocal = (StartLocal)debugItem;
459 writer.writeStartLocal(startLocal.getCodeAddress()
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderClassPool.java 387 StartLocal startLocal = (StartLocal)debugItem;
388 writer.writeStartLocal(startLocal.getCodeAddress(),
389 startLocal.getRegister(),
390 checkStringReference(startLocal.getNameReference()),
391 checkTypeReference(startLocal.getTypeReference()),
392 checkStringReference(startLocal.getSignatureReference()));
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MutableMethodImplementation.java     [all...]

Completed in 264 milliseconds