Java Code Examples for org.jf.dexlib2.util.Preconditions#checkShortRegister()
The following examples show how to use
org.jf.dexlib2.util.Preconditions#checkShortRegister() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BuilderInstruction3rc.java From HeyGirl with Apache License 2.0 | 5 votes |
public BuilderInstruction3rc(@Nonnull Opcode opcode, int startRegister, int registerCount, @Nonnull Reference reference) { super(opcode); this.startRegister = Preconditions.checkShortRegister(startRegister); this.registerCount = Preconditions.checkRegisterRangeCount(registerCount); this.reference = reference; }
Example 2
Source File: ImmutableInstruction3rmi.java From ZjDroid with Apache License 2.0 | 5 votes |
public ImmutableInstruction3rmi(@Nonnull Opcode opcode, int startRegister, int registerCount, int inlineIndex) { super(opcode); this.startRegister = Preconditions.checkShortRegister(startRegister); this.registerCount = Preconditions.checkRegisterRangeCount(registerCount); this.inlineIndex = Preconditions.checkInlineIndex(inlineIndex); }
Example 3
Source File: ImmutableInstruction32x.java From HeyGirl with Apache License 2.0 | 5 votes |
public ImmutableInstruction32x(@Nonnull Opcode opcode, int registerA, int registerB) { super(opcode); this.registerA = Preconditions.checkShortRegister(registerA); this.registerB = Preconditions.checkShortRegister(registerB); }
Example 4
Source File: ImmutableInstruction3rmi.java From HeyGirl with Apache License 2.0 | 5 votes |
public ImmutableInstruction3rmi(@Nonnull Opcode opcode, int startRegister, int registerCount, int inlineIndex) { super(opcode); this.startRegister = Preconditions.checkShortRegister(startRegister); this.registerCount = Preconditions.checkRegisterRangeCount(registerCount); this.inlineIndex = Preconditions.checkInlineIndex(inlineIndex); }
Example 5
Source File: ImmutableInstruction3rms.java From HeyGirl with Apache License 2.0 | 5 votes |
public ImmutableInstruction3rms(@Nonnull Opcode opcode, int startRegister, int registerCount, int vtableIndex) { super(opcode); this.startRegister = Preconditions.checkShortRegister(startRegister); this.registerCount = Preconditions.checkRegisterRangeCount(registerCount); this.vtableIndex = Preconditions.checkVtableIndex(vtableIndex); }
Example 6
Source File: BuilderInstruction3rc.java From ZjDroid with Apache License 2.0 | 5 votes |
public BuilderInstruction3rc(@Nonnull Opcode opcode, int startRegister, int registerCount, @Nonnull Reference reference) { super(opcode); this.startRegister = Preconditions.checkShortRegister(startRegister); this.registerCount = Preconditions.checkRegisterRangeCount(registerCount); this.reference = reference; }
Example 7
Source File: BuilderInstruction32x.java From zjdroid with Apache License 2.0 | 5 votes |
public BuilderInstruction32x(@Nonnull Opcode opcode, int registerA, int registerB) { super(opcode); this.registerA = Preconditions.checkShortRegister(registerA); this.registerB = Preconditions.checkShortRegister(registerB); }
Example 8
Source File: BuilderInstruction3rc.java From zjdroid with Apache License 2.0 | 5 votes |
public BuilderInstruction3rc(@Nonnull Opcode opcode, int startRegister, int registerCount, @Nonnull Reference reference) { super(opcode); this.startRegister = Preconditions.checkShortRegister(startRegister); this.registerCount = Preconditions.checkRegisterRangeCount(registerCount); this.reference = reference; }
Example 9
Source File: ImmutableInstruction32x.java From ZjDroid with Apache License 2.0 | 5 votes |
public ImmutableInstruction32x(@Nonnull Opcode opcode, int registerA, int registerB) { super(opcode); this.registerA = Preconditions.checkShortRegister(registerA); this.registerB = Preconditions.checkShortRegister(registerB); }
Example 10
Source File: ImmutableInstruction22x.java From zjdroid with Apache License 2.0 | 5 votes |
public ImmutableInstruction22x(@Nonnull Opcode opcode, int registerA, int registerB) { super(opcode); this.registerA = Preconditions.checkByteRegister(registerA); this.registerB = Preconditions.checkShortRegister(registerB); }
Example 11
Source File: ImmutableInstruction3rms.java From ZjDroid with Apache License 2.0 | 5 votes |
public ImmutableInstruction3rms(@Nonnull Opcode opcode, int startRegister, int registerCount, int vtableIndex) { super(opcode); this.startRegister = Preconditions.checkShortRegister(startRegister); this.registerCount = Preconditions.checkRegisterRangeCount(registerCount); this.vtableIndex = Preconditions.checkVtableIndex(vtableIndex); }
Example 12
Source File: ImmutableInstruction3rmi.java From zjdroid with Apache License 2.0 | 5 votes |
public ImmutableInstruction3rmi(@Nonnull Opcode opcode, int startRegister, int registerCount, int inlineIndex) { super(opcode); this.startRegister = Preconditions.checkShortRegister(startRegister); this.registerCount = Preconditions.checkRegisterRangeCount(registerCount); this.inlineIndex = Preconditions.checkInlineIndex(inlineIndex); }
Example 13
Source File: ImmutableInstruction3rms.java From zjdroid with Apache License 2.0 | 5 votes |
public ImmutableInstruction3rms(@Nonnull Opcode opcode, int startRegister, int registerCount, int vtableIndex) { super(opcode); this.startRegister = Preconditions.checkShortRegister(startRegister); this.registerCount = Preconditions.checkRegisterRangeCount(registerCount); this.vtableIndex = Preconditions.checkVtableIndex(vtableIndex); }
Example 14
Source File: ImmutableInstruction22x.java From ZjDroid with Apache License 2.0 | 5 votes |
public ImmutableInstruction22x(@Nonnull Opcode opcode, int registerA, int registerB) { super(opcode); this.registerA = Preconditions.checkByteRegister(registerA); this.registerB = Preconditions.checkShortRegister(registerB); }
Example 15
Source File: BuilderInstruction32x.java From ZjDroid with Apache License 2.0 | 5 votes |
public BuilderInstruction32x(@Nonnull Opcode opcode, int registerA, int registerB) { super(opcode); this.registerA = Preconditions.checkShortRegister(registerA); this.registerB = Preconditions.checkShortRegister(registerB); }
Example 16
Source File: BuilderInstruction3rc.java From ZjDroid with Apache License 2.0 | 5 votes |
public BuilderInstruction3rc(@Nonnull Opcode opcode, int startRegister, int registerCount, @Nonnull Reference reference) { super(opcode); this.startRegister = Preconditions.checkShortRegister(startRegister); this.registerCount = Preconditions.checkRegisterRangeCount(registerCount); this.reference = reference; }
Example 17
Source File: ImmutableInstruction3rc.java From ZjDroid with Apache License 2.0 | 5 votes |
public ImmutableInstruction3rc(@Nonnull Opcode opcode, int startRegister, int registerCount, @Nonnull Reference reference) { super(opcode); this.startRegister = Preconditions.checkShortRegister(startRegister); this.registerCount = Preconditions.checkRegisterRangeCount(registerCount); this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); }
Example 18
Source File: BuilderInstruction22x.java From ZjDroid with Apache License 2.0 | 5 votes |
public BuilderInstruction22x(@Nonnull Opcode opcode, int registerA, int registerB) { super(opcode); this.registerA = Preconditions.checkByteRegister(registerA); this.registerB = Preconditions.checkShortRegister(registerB); }
Example 19
Source File: ImmutableInstruction32x.java From ZjDroid with Apache License 2.0 | 5 votes |
public ImmutableInstruction32x(@Nonnull Opcode opcode, int registerA, int registerB) { super(opcode); this.registerA = Preconditions.checkShortRegister(registerA); this.registerB = Preconditions.checkShortRegister(registerB); }
Example 20
Source File: BuilderInstruction22x.java From HeyGirl with Apache License 2.0 | 5 votes |
public BuilderInstruction22x(@Nonnull Opcode opcode, int registerA, int registerB) { super(opcode); this.registerA = Preconditions.checkByteRegister(registerA); this.registerB = Preconditions.checkShortRegister(registerB); }