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

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableMethodImplementation.java 36 import org.jf.dexlib2.iface.MethodImplementation;
48 public class ImmutableMethodImplementation implements MethodImplementation {
75 public static ImmutableMethodImplementation of(@Nullable MethodImplementation methodImplementation) {
76 if (methodImplementation == null) {
79 if (methodImplementation instanceof ImmutableMethodImplementation) {
80 return (ImmutableMethodImplementation)methodImplementation;
83 methodImplementation.getRegisterCount(),
84 methodImplementation.getInstructions(),
85 methodImplementation.getTryBlocks()
    [all...]
ImmutableMethod.java 41 import org.jf.dexlib2.iface.MethodImplementation;
57 @Nullable protected final ImmutableMethodImplementation methodImplementation;
65 @Nullable MethodImplementation methodImplementation) {
72 this.methodImplementation = ImmutableMethodImplementation.of(methodImplementation);
81 @Nullable ImmutableMethodImplementation methodImplementation) {
88 this.methodImplementation = methodImplementation;
112 @Override @Nullable public ImmutableMethodImplementation getImplementation() { return methodImplementation; }
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderMethod.java 36 import org.jf.dexlib2.iface.MethodImplementation;
48 @Nullable final MethodImplementation methodImplementation;
57 @Nullable MethodImplementation methodImplementation) {
62 this.methodImplementation = methodImplementation;
72 @Override @Nullable public MethodImplementation getImplementation() { return methodImplementation; }
DexBuilder.java 40 import org.jf.dexlib2.iface.MethodImplementation;
98 @Nullable MethodImplementation methodImplementation) {
106 methodImplementation);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MutableMethodImplementation.java 43 import org.jf.dexlib2.iface.MethodImplementation;
56 public class MutableMethodImplementation implements MethodImplementation {
62 public MutableMethodImplementation(@Nonnull MethodImplementation methodImplementation) {
63 this.registerCount = methodImplementation.getRegisterCount();
68 for (Instruction instruction: methodImplementation.getInstructions()) {
84 for (final Instruction instruction: methodImplementation.getInstructions()) {
105 for (DebugItem debugItem: methodImplementation.getDebugItems()) {
114 for (TryBlock<? extends ExceptionHandler> tryBlock: methodImplementation.getTryBlocks()) {
    [all...]
  /external/smali/smali/src/main/antlr3/
smaliTreeWalker.g 57 import org.jf.dexlib2.iface.MethodImplementation;
395 MethodImplementation methodImplementation = null;
407 methodImplementation = $method::methodBuilder.getMethodImplementation();
409 if (Iterables.isEmpty(methodImplementation.getInstructions())) {
429 if (methodImplementation.getTryBlocks().size() > 0) {
433 if (!Iterables.isEmpty(methodImplementation.getDebugItems())) {
437 methodImplementation = null;
464 methodImplementation);
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DexWriter.java     [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
smaliTreeWalker.java 23 import org.jf.dexlib2.iface.MethodImplementation;
    [all...]

Completed in 673 milliseconds