Home
last modified time | relevance | path

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

123

/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/rewriter/
H A DMethodImplementationRewriter.java34 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
42 public class MethodImplementationRewriter implements Rewriter<MethodImplementation> {
49 …@Nonnull @Override public MethodImplementation rewrite(@Nonnull MethodImplementation methodImpleme… in rewrite()
53 protected class RewrittenMethodImplementation implements MethodImplementation {
54 @Nonnull protected MethodImplementation methodImplementation;
56 public RewrittenMethodImplementation(@Nonnull MethodImplementation methodImplementation) { in RewrittenMethodImplementation()
H A DDexRewriter.java40 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
83 private final Rewriter<MethodImplementation> methodImplementationRewriter;
121 …@Nonnull @Override public Rewriter<MethodImplementation> getMethodImplementationRewriter() { retur… in getMethodImplementationRewriter()
H A DMethodRewriter.java37 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
99 @Override @Nullable public MethodImplementation getImplementation() { in getImplementation()
H A DRewriters.java40 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
59 @Nonnull Rewriter<MethodImplementation> getMethodImplementationRewriter(); in getMethodImplementationRewriter()
H A DRewriterModule.java40 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
73 …@Nonnull public Rewriter<MethodImplementation> getMethodImplementationRewriter(@Nonnull Rewriters … in getMethodImplementationRewriter()
/aosp_15_r20/external/google-smali/baksmali/src/test/java/com/android/tools/smali/baksmali/
H A DInstructionMethodItemTest.java39 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
115 MethodImplementation methodImplementation = new MethodImplementation() { in testInvalidReference()
159 private final MethodImplementation methodImplementation;
161 public TestMethod(MethodImplementation methodImplementation) { in TestMethod()
184 public MethodImplementation getImplementation() { in getImplementation()
/aosp_15_r20/external/google-smali/dexlib2/src/test/java/com/android/tools/smali/dexlib2/builder/
H A DFixGotoTest.java38 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
61 MethodImplementation impl = builder.getMethodImplementation(); in testFixGotoToGoto16()
84 MethodImplementation impl = builder.getMethodImplementation(); in testFixGotoToGoto32()
107 MethodImplementation impl = builder.getMethodImplementation(); in testFixGoto16ToGoto32()
143 MethodImplementation impl = builder.getMethodImplementation(); in testFixGotoCascading()
H A DMutableMethodImplementationTest.java39 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
60 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testTryEndAtEndOfMethod()
H A DFixOffsetsTest.java38 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
98 MethodImplementation impl = builder.getMethodImplementation(); in testFixOffsets()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/writer/builder/
H A DBuilderMethod.java35 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
50 @Nullable final MethodImplementation methodImplementation;
60 @Nullable MethodImplementation methodImplementation) { in BuilderMethod()
77 …@Override @Nullable public MethodImplementation getImplementation() { return methodImplementation;… in getImplementation()
H A DBuilderClassPool.java37 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
280 MethodImplementation impl = builderMethod.getImplementation();
294 MethodImplementation impl = builderMethod.getImplementation();
303 MethodImplementation impl = builderMethod.getImplementation();
312 MethodImplementation impl = builderMethod.getImplementation();
325 MethodImplementation impl = builderMethod.getImplementation();
/aosp_15_r20/external/google-smali/dexlib2/src/test/java/com/android/tools/smali/dexlib2/analysis/
H A DMethodAnalyzerTest.java49 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
78 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testInstanceOfNarrowingEqz_art()
109 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testInstanceOfNarrowingEqz_dalvik()
141 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testInstanceOfNarrowingNez_art()
172 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testInstanceOfNarrowingNez_dalvik()
205 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testInstanceOfNarrowingAfterMove_art()
240 MethodImplementation methodImplementation = builder.getMethodImplementation(); in testInstanceOfNarrowingAfterMove_dalvik()
/aosp_15_r20/external/google-smali/dexlib2/src/test/java/com/android/tools/smali/dexlib2/writer/
H A DJumboStringConversionTest.java37 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
108 MethodImplementation impl = method.getImplementation(); in testJumboStringConversion()
158 MethodImplementation methodImpl = new MethodImplementation() { in testJumboStringConversion_NonMethodBuilder()
206 MethodImplementation impl = method.getImplementation(); in testJumboStringConversion_NonMethodBuilder()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/writer/pool/
H A DClassPool.java41 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
156 MethodImplementation methodImpl = method.getImplementation(); in internCode()
220 MethodImplementation methodImpl = method.getImplementation(); in internDebug()
397 MethodImplementation impl = method.getImplementation();
413 MethodImplementation impl = method.getImplementation();
421 MethodImplementation impl = method.getImplementation();
430 MethodImplementation impl = method.getImplementation();
H A DPoolMethod.java36 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
93 @Override @Nullable public MethodImplementation getImplementation() { in getImplementation()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/immutable/
H A DImmutableMethodImplementation.java34 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
46 public class ImmutableMethodImplementation implements MethodImplementation {
73 …public static ImmutableMethodImplementation of(@Nullable MethodImplementation methodImplementation… in of()
H A DImmutableMethod.java39 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
70 @Nullable MethodImplementation methodImplementation) { in ImmutableMethod()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/util/
H A DSyntheticAccessorResolver.java35 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
106 MethodImplementation matchedMethodImpl = null; in getAccessedMember()
108 MethodImplementation methodImpl = method.getImplementation(); in getAccessedMember()
/aosp_15_r20/external/google-smali/third_party/baksmali/src/main/java/com/android/tools/smali/baksmali/Adaptors/
H A DClassDefinition.java34 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
77 MethodImplementation impl = method.getImplementation(); in findFieldsSetInStaticConstructor()
277 MethodImplementation methodImpl = method.getImplementation(); in writeDirectMethods()
323 MethodImplementation methodImpl = method.getImplementation(); in writeVirtualMethods()
/aosp_15_r20/external/google-smali/smali/src/test/java/com/android/tools/smali/smali/
H A DImplicitReferenceTest.java41 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
82 MethodImplementation methodImpl = mainMethod.getImplementation(); in testImplicitMethodReference()
177 MethodImplementation methodImpl = mainMethod.getImplementation(); in testImplicitFieldReference()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/analysis/reflection/
H A DReflectionConstructor.java38 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
92 @Nullable @Override public MethodImplementation getImplementation() {
H A DReflectionMethod.java38 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
91 @Nullable @Override public MethodImplementation getImplementation() {
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/builder/
H A DMethodImplementationBuilder.java33 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
55 public MethodImplementation getMethodImplementation() { in getMethodImplementation()
/aosp_15_r20/external/google-smali/dexlib2/src/test/java/com/android/tools/smali/dexlib2/
H A DAccessorTest.java37 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
109 MethodImplementation methodImpl = method.getImplementation(); in testAccessors()
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/
H A DDexBackedMethodImplementation.java39 import com.android.tools.smali.dexlib2.iface.MethodImplementation;
52 public class DexBackedMethodImplementation implements MethodImplementation {

123