OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImmutableInstruction31t
(Results
1 - 5
of
5
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction31t.java
41
public class
ImmutableInstruction31t
extends ImmutableInstruction implements Instruction31t {
47
public
ImmutableInstruction31t
(@Nonnull Opcode opcode,
55
public static
ImmutableInstruction31t
of(Instruction31t instruction) {
56
if (instruction instanceof
ImmutableInstruction31t
) {
57
return (
ImmutableInstruction31t
)instruction;
59
return new
ImmutableInstruction31t
(
ImmutableInstructionFactory.java
174
public
ImmutableInstruction31t
makeInstruction31t(@Nonnull Opcode opcode,
177
return new
ImmutableInstruction31t
(opcode, registerA, codeOffset);
ImmutableInstruction.java
109
return
ImmutableInstruction31t
.of((Instruction31t)instruction);
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/util/
InstructionOffsetMapTest.java
70
/*20: 0x26*/ new
ImmutableInstruction31t
(Opcode.FILL_ARRAY_DATA, 28, 29),
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java
51
import org.jf.dexlib2.immutable.instruction.
ImmutableInstruction31t
;
122
effectiveInstructions.set(i, new
ImmutableInstruction31t
(opcode,
145
effectiveInstructions.set(i, new
ImmutableInstruction31t
(opcode,
Completed in 248 milliseconds