Home
last modified time | relevance | path

Searched refs:MethodImplementation (Results 1 – 25 of 35) sorted by relevance

12

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
DMethodImplementationRewriter.java35 import org.jf.dexlib2.iface.MethodImplementation;
43 public class MethodImplementationRewriter implements Rewriter<MethodImplementation> {
50 …@Nonnull @Override public MethodImplementation rewrite(@Nonnull MethodImplementation methodImpleme… in rewrite()
54 protected class RewrittenMethodImplementation implements MethodImplementation {
55 @Nonnull protected MethodImplementation methodImplementation;
57 public RewrittenMethodImplementation(@Nonnull MethodImplementation methodImplementation) { in RewrittenMethodImplementation()
DMethodRewriter.java37 import org.jf.dexlib2.iface.MethodImplementation;
95 @Override @Nullable public MethodImplementation getImplementation() { in getImplementation()
DDexRewriter.java75 private final Rewriter<MethodImplementation> methodImplementationRewriter;
130 …@Nonnull @Override public Rewriter<MethodImplementation> getMethodImplementationRewriter() { retur… in getMethodImplementationRewriter()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
DBuilderMethod.java36 import org.jf.dexlib2.iface.MethodImplementation;
48 @Nullable final MethodImplementation methodImplementation;
57 @Nullable MethodImplementation methodImplementation) { in BuilderMethod()
72 …@Override @Nullable public MethodImplementation getImplementation() { return methodImplementation;… in getImplementation()
DBuilderClassPool.java41 import org.jf.dexlib2.iface.MethodImplementation;
271 MethodImplementation impl = builderMethod.getImplementation();
288 MethodImplementation impl = builderMethod.getImplementation();
297 MethodImplementation impl = builderMethod.getImplementation();
306 MethodImplementation impl = builderMethod.getImplementation();
319 MethodImplementation impl = builderMethod.getImplementation();
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
DFixGotoTest.java9 import org.jf.dexlib2.iface.MethodImplementation;
31 MethodImplementation impl = builder.getMethodImplementation(); in testFixGotoToGoto16()
54 MethodImplementation impl = builder.getMethodImplementation(); in testFixGotoToGoto32()
77 MethodImplementation impl = builder.getMethodImplementation(); in testFixGoto16ToGoto32()
113 MethodImplementation impl = builder.getMethodImplementation(); in testFixGotoCascading()
DMutableMethodImplementationTest.java37 import org.jf.dexlib2.iface.MethodImplementation;
58 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testTryEndAtEndOfMethod()
DFixOffsetsTest.java40 import org.jf.dexlib2.iface.MethodImplementation;
99 MethodImplementation impl = builder.getMethodImplementation(); in testFixOffsets()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
DImmutableMethodImplementation.java36 import org.jf.dexlib2.iface.MethodImplementation;
48 public class ImmutableMethodImplementation implements MethodImplementation {
75 …public static ImmutableMethodImplementation of(@Nullable MethodImplementation methodImplementation… in of()
DImmutableMethod.java41 import org.jf.dexlib2.iface.MethodImplementation;
65 @Nullable MethodImplementation methodImplementation) { in ImmutableMethod()
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
DMethodAnalyzerTest.java46 import org.jf.dexlib2.iface.MethodImplementation;
75 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testInstanceOfNarrowingEqz_art()
106 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testInstanceOfNarrowingEqz_dalvik()
138 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testInstanceOfNarrowingNez_art()
169 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testInstanceOfNarrowingNez_dalvik()
202 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testInstanceOfNarrowingAfterMove_art()
237 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testInstanceOfNarrowingAfterMove_dalvik()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DSyntheticAccessorResolver.java41 import org.jf.dexlib2.iface.MethodImplementation;
107 MethodImplementation matchedMethodImpl = null; in getAccessedMember()
109 MethodImplementation methodImpl = method.getImplementation(); in getAccessedMember()
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DJumboStringConversionTest.java103 MethodImplementation impl = method.getImplementation(); in testJumboStringConversion()
153 MethodImplementation methodImpl = new MethodImplementation() { in testJumboStringConversion_NonMethodBuilder()
200 MethodImplementation impl = method.getImplementation(); in testJumboStringConversion_NonMethodBuilder()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DPoolMethod.java38 import org.jf.dexlib2.iface.MethodImplementation;
90 @Override @Nullable public MethodImplementation getImplementation() { in getImplementation()
DClassPool.java123 MethodImplementation methodImpl = method.getImplementation(); in internCode()
171 MethodImplementation methodImpl = method.getImplementation(); in internDebug()
373 MethodImplementation impl = method.getImplementation();
389 MethodImplementation impl = method.getImplementation();
397 MethodImplementation impl = method.getImplementation();
406 MethodImplementation impl = method.getImplementation();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/
DReflectionConstructor.java40 import org.jf.dexlib2.iface.MethodImplementation;
92 @Nullable @Override public MethodImplementation getImplementation() {
DReflectionMethod.java40 import org.jf.dexlib2.iface.MethodImplementation;
91 @Nullable @Override public MethodImplementation getImplementation() {
/external/smali/smalidea/src/test/java/org/jf/smalidea/dexlib/
DSmalideaMethodTest.java39 import org.jf.dexlib2.iface.MethodImplementation;
110 MethodImplementation impl = method.getImplementation(); in testSmalideaMethod()
350 MethodImplementation impl = method.getImplementation(); in testCatchBlocks()
422 MethodImplementation impl = method.getImplementation(); in testPackedSwitch()
488 MethodImplementation impl = method.getImplementation(); in testSparseSwitch()
563 MethodImplementation impl = method.getImplementation(); in testArrayData()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DMethodImplementationBuilder.java34 import org.jf.dexlib2.iface.MethodImplementation;
56 public MethodImplementation getMethodImplementation() { in getMethodImplementation()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DDexBackedMethodImplementation.java40 import org.jf.dexlib2.iface.MethodImplementation;
51 public class DexBackedMethodImplementation implements MethodImplementation {
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/
DAccessorTest.java39 import org.jf.dexlib2.iface.MethodImplementation;
110 MethodImplementation methodImpl = method.getImplementation(); in testAccessors()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
DMethodImplementation.java43 public interface MethodImplementation { interface
DMethod.java109 @Nullable MethodImplementation getImplementation(); in getImplementation()
/external/smali/smali/src/test/java/org/jf/smali/
DImplicitReferenceTest.java41 import org.jf.dexlib2.iface.MethodImplementation;
82 MethodImplementation methodImpl = mainMethod.getImplementation(); in testImplicitMethodReference()
177 MethodImplementation methodImpl = mainMethod.getImplementation(); in testImplicitFieldReference()
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DClassDefinition.java70 MethodImplementation impl = method.getImplementation(); in findFieldsSetInStaticConstructor()
276 MethodImplementation methodImpl = method.getImplementation(); in writeDirectMethods()
321 MethodImplementation methodImpl = method.getImplementation(); in writeVirtualMethods()

12