OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:methodImplementation
(Results
1 - 5
of
5
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
MethodImplementationRewriter.java
35
import org.jf.dexlib2.iface.
MethodImplementation
;
43
public class MethodImplementationRewriter implements Rewriter<
MethodImplementation
> {
50
@Nonnull @Override public
MethodImplementation
rewrite(@Nonnull
MethodImplementation
methodImplementation
) {
51
return new RewrittenMethodImplementation(
methodImplementation
);
54
protected class RewrittenMethodImplementation implements
MethodImplementation
{
55
@Nonnull protected
MethodImplementation
methodImplementation
;
57
public RewrittenMethodImplementation(@Nonnull
MethodImplementation
methodImplementation)
[
all
...]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
MutableMethodImplementationTest.java
37
import org.jf.dexlib2.iface.
MethodImplementation
;
58
MethodImplementation
methodImplementation
= builder.getMethodImplementation();
60
Assert.assertEquals(0,
methodImplementation
.getTryBlocks().get(0).getStartCodeAddress());
61
Assert.assertEquals(8,
methodImplementation
.getTryBlocks().get(0).getCodeUnitCount());
63
methodImplementation
= new MutableMethodImplementation(
methodImplementation
);
65
Assert.assertEquals(0,
methodImplementation
.getTryBlocks().get(0).getStartCodeAddress());
66
Assert.assertEquals(8,
methodImplementation
.getTryBlocks().get(0).getCodeUnitCount());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
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
; }
/external/smali/smali/src/main/java/org/jf/smali/
smaliTreeWalker.java
23
import org.jf.dexlib2.iface.
MethodImplementation
;
[
all
...]
Completed in 458 milliseconds