Home
last modified time | relevance | path

Searched refs:preInsertions (Results 1 – 2 of 2) sorted by relevance

/external/proguard/src/proguard/classfile/editor/
DCodeAttributeEditor.java73 …/*private*/public Instruction[] preInsertions = new Instruction[ClassConstants.TYPICAL_CODE_LE… field in CodeAttributeEditor
121 if (preInsertions.length < codeLength) in reset()
123 preInsertions = new Instruction[codeLength]; in reset()
130 Arrays.fill(preInsertions, 0, codeLength, null); in reset()
150 if (preInsertions.length < codeLength) in extend()
152 preInsertions = (Instruction[])ArrayUtil.extendArray(preInsertions, codeLength); in extend()
159 Arrays.fill(preInsertions, this.codeLength, codeLength, null); in extend()
183 preInsertions[instructionOffset] = shrinkInstructions ? in insertBeforeInstruction()
209 preInsertions[instructionOffset] = shrinkInstructions ? in insertBeforeInstruction()
361 preInsertions[instructionOffset] = null; in clearModifications()
[all …]
/external/proguard/src/proguard/optimize/evaluation/
DEvaluationShrinker.java458 Instruction preInsertion = codeAttributeEditor.preInsertions[offset]; in visitCodeAttribute0()