Searched defs:registerC (Results 1 - 8 of 8) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
H A DBuilderInstruction23x.java47 protected final int registerC; field in class:BuilderInstruction23x
52 int registerC) {
56 this.registerC = Preconditions.checkByteRegister(registerC);
61 @Override public int getRegisterC() { return registerC; }
49 BuilderInstruction23x(@onnull Opcode opcode, int registerA, int registerB, int registerC) argument
H A DBuilderInstruction35c.java47 protected final int registerC; field in class:BuilderInstruction35c
56 int registerC,
64 this.registerC = (registerCount>0) ? Preconditions.checkNibbleRegister(registerC) : 0;
73 @Override public int getRegisterC() { return registerC; }
54 BuilderInstruction35c(@onnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, int registerF, int registerG, @Nonnull Reference reference) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableInstruction23x.java46 protected final int registerC; field in class:ImmutableInstruction23x
51 int registerC) {
55 this.registerC = Preconditions.checkByteRegister(registerC);
71 @Override public int getRegisterC() { return registerC; }
48 ImmutableInstruction23x(@onnull Opcode opcode, int registerA, int registerB, int registerC) argument
H A DImmutableInstruction35c.java48 protected final int registerC; field in class:ImmutableInstruction35c
57 int registerC,
65 this.registerC = (registerCount>0) ? Preconditions.checkNibbleRegister(registerC) : 0;
89 @Override public int getRegisterC() { return registerC; }
55 ImmutableInstruction35c(@onnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, int registerF, int registerG, @Nonnull Reference reference) argument
H A DImmutableInstruction35mi.java45 protected final int registerC; field in class:ImmutableInstruction35mi
54 int registerC,
62 this.registerC = (registerCount>0) ? Preconditions.checkNibbleRegister(registerC) : 0;
86 @Override public int getRegisterC() { return registerC; }
52 ImmutableInstruction35mi(@onnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, int registerF, int registerG, int inlineIndex) argument
H A DImmutableInstruction35ms.java45 protected final int registerC; field in class:ImmutableInstruction35ms
54 int registerC,
62 this.registerC = (registerCount>0) ? Preconditions.checkNibbleRegister(registerC) : 0;
86 @Override public int getRegisterC() { return registerC; }
52 ImmutableInstruction35ms(@onnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, int registerF, int registerG, int vtableIndex) argument
H A DImmutableInstructionFactory.java153 int registerC) {
154 return new ImmutableInstruction23x(opcode, registerA, registerB, registerC);
188 int registerC,
194 return new ImmutableInstruction35c(opcode, registerCount, registerC, registerD, registerE, registerF, registerG,
150 makeInstruction23x(@onnull Opcode opcode, int registerA, int registerB, int registerC) argument
186 makeInstruction35c(@onnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, int registerF, int registerG, @Nonnull Reference reference) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DInstructionFactory.java62 Instruction makeInstruction23x(@Nonnull Opcode opcode, int registerA, int registerB, int registerC); argument
68 Instruction makeInstruction35c(@Nonnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, argument

Completed in 88 milliseconds