OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImmutableMethodImplementation
(Results
1 - 4
of
4
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableMethodImplementation.java
48
public class
ImmutableMethodImplementation
implements MethodImplementation {
54
public
ImmutableMethodImplementation
(int registerCount,
64
public
ImmutableMethodImplementation
(int registerCount,
75
public static
ImmutableMethodImplementation
of(@Nullable MethodImplementation methodImplementation) {
79
if (methodImplementation instanceof
ImmutableMethodImplementation
) {
80
return (
ImmutableMethodImplementation
)methodImplementation;
82
return new
ImmutableMethodImplementation
(
ImmutableMethod.java
57
@Nullable protected final
ImmutableMethodImplementation
methodImplementation;
72
this.methodImplementation =
ImmutableMethodImplementation
.of(methodImplementation);
81
@Nullable
ImmutableMethodImplementation
methodImplementation) {
112
@Override @Nullable public
ImmutableMethodImplementation
getImplementation() { return methodImplementation; }
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
CustomMethodInlineTableTest.java
47
import org.jf.dexlib2.immutable.
ImmutableMethodImplementation
;
63
ImmutableMethodImplementation
methodImpl = new
ImmutableMethodImplementation
(1, instructions, null, null);
90
ImmutableMethodImplementation
methodImpl = new
ImmutableMethodImplementation
(1, instructions, null, null);
117
ImmutableMethodImplementation
methodImpl = new
ImmutableMethodImplementation
(1, instructions, null, null);
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/util/
InstructionOffsetMapTest.java
37
import org.jf.dexlib2.immutable.
ImmutableMethodImplementation
;
79
ImmutableMethodImplementation
impl = new
ImmutableMethodImplementation
(33, instructions, null, null);
Completed in 248 milliseconds