Searched refs:targetsSize (Results 1 – 1 of 1) sorted by relevance
405 int targetsSize = (int) RawInsnHelper.getUnsignedShortFromTwoBytes(dataInsn.rawBytes, rawPtr); in readSwitchInstruction() local408 int[] keys = new int[targetsSize]; in readSwitchInstruction()409 int[] targets = new int[targetsSize]; in readSwitchInstruction()418 for (int i = 1; i < targetsSize; i++) { in readSwitchInstruction()424 for (int i = 0; i < targetsSize; i++) { in readSwitchInstruction()432 for (int i = 0; i < targetsSize; i++) { in readSwitchInstruction()463 int targetsSize = switchInsn.targets.size(); in updateSwitchInstruction() local466 int[] targets = new int[targetsSize]; in updateSwitchInstruction()481 RawInsnHelper.writeUnsignedShortToTwoBytes(dataInsn.rawBytes, rawPtr, targetsSize); in updateSwitchInstruction()491 for (int i = 0; i < targetsSize; i++) { in updateSwitchInstruction()[all …]