OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImmutableInstruction10x
(Results
1 - 7
of
7
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction10x.java
40
public class
ImmutableInstruction10x
extends ImmutableInstruction implements Instruction10x {
43
public
ImmutableInstruction10x
(@Nonnull Opcode opcode) {
47
public static
ImmutableInstruction10x
of(Instruction10x instruction) {
48
if (instruction instanceof
ImmutableInstruction10x
) {
49
return (
ImmutableInstruction10x
)instruction;
51
return new
ImmutableInstruction10x
(instruction.getOpcode());
ImmutableInstructionFactory.java
54
public
ImmutableInstruction10x
makeInstruction10x(@Nonnull Opcode opcode) {
55
return new
ImmutableInstruction10x
(opcode);
ImmutableInstruction.java
65
return
ImmutableInstruction10x
.of((Instruction10x)instruction);
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
CustomMethodInlineTableTest.java
49
import org.jf.dexlib2.immutable.instruction.
ImmutableInstruction10x
;
61
new
ImmutableInstruction10x
(Opcode.RETURN_VOID));
88
new
ImmutableInstruction10x
(Opcode.RETURN_VOID));
115
new
ImmutableInstruction10x
(Opcode.RETURN_VOID));
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
JumboStringConversionTest.java
52
import org.jf.dexlib2.immutable.instruction.
ImmutableInstruction10x
;
151
instructions.add(new
ImmutableInstruction10x
(Opcode.RETURN_VOID));
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/util/
InstructionOffsetMapTest.java
49
/*01: 0x01*/ new
ImmutableInstruction10x
(Opcode.NOP),
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java
[
all
...]
Completed in 196 milliseconds