Home
last modified time | relevance | path

Searched refs:checkShortRegister (Results 1 – 10 of 10) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
DBuilderInstruction32x.java52 this.registerA = Preconditions.checkShortRegister(registerA); in BuilderInstruction32x()
53 this.registerB = Preconditions.checkShortRegister(registerB); in BuilderInstruction32x()
DBuilderInstruction22x.java53 this.registerB = Preconditions.checkShortRegister(registerB); in BuilderInstruction22x()
DBuilderInstruction3rc.java56 this.startRegister = Preconditions.checkShortRegister(startRegister); in BuilderInstruction3rc()
DBuilderInstruction4rcc.java58 this.startRegister = Preconditions.checkShortRegister(startRegister); in BuilderInstruction4rcc()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
DImmutableInstruction32x.java51 this.registerA = Preconditions.checkShortRegister(registerA); in ImmutableInstruction32x()
52 this.registerB = Preconditions.checkShortRegister(registerB); in ImmutableInstruction32x()
DImmutableInstruction22x.java52 this.registerB = Preconditions.checkShortRegister(registerB); in ImmutableInstruction22x()
DImmutableInstruction3rms.java53 this.startRegister = Preconditions.checkShortRegister(startRegister); in ImmutableInstruction3rms()
DImmutableInstruction3rmi.java53 this.startRegister = Preconditions.checkShortRegister(startRegister); in ImmutableInstruction3rmi()
DImmutableInstruction3rc.java57 this.startRegister = Preconditions.checkShortRegister(startRegister); in ImmutableInstruction3rc()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DPreconditions.java64 public static int checkShortRegister(int register) { in checkShortRegister() method in Preconditions