Home
last modified time | relevance | path

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

/external/proguard/src/proguard/classfile/editor/
DCodeAttributeEditor.java75 …/*private*/public Instruction[] postInsertions = new Instruction[ClassConstants.TYPICAL_CODE_LE… field in CodeAttributeEditor
125 postInsertions = new Instruction[codeLength]; in reset()
132 Arrays.fill(postInsertions, 0, codeLength, null); in reset()
154 postInsertions = (Instruction[])ArrayUtil.extendArray(postInsertions, codeLength); in extend()
161 Arrays.fill(postInsertions, this.codeLength, codeLength, null); in extend()
279 postInsertions[instructionOffset] = shrinkInstructions ? in insertAfterInstruction()
305 postInsertions[instructionOffset] = shrinkInstructions ? in insertAfterInstruction()
363 postInsertions[instructionOffset] = null; in clearModifications()
385 postInsertions[instructionOffset] != null || in isModified()
701 Instruction postInstruction = postInsertions[oldOffset]; in mapInstruction()
[all …]
/external/proguard/src/proguard/optimize/evaluation/
DEvaluationShrinker.java470 Instruction postInsertion = codeAttributeEditor.postInsertions[offset]; in visitCodeAttribute0()