HomeSort by relevance Sort by last modified time
    Searched defs:localVariableInfo (Results 1 - 8 of 8) sorted by null

  /external/proguard/src/proguard/obfuscate/
ParameterNameMarker.java 68 LocalVariableInfo localVariableInfo =
71 if (localVariableInfo.u2startPC == 0)
74 localVariableInfo;
  /external/proguard/src/proguard/classfile/editor/
VariableCleaner.java 132 private int removeUnusedLocalVariables(LocalVariableInfo[] localVariableInfos,
141 LocalVariableInfo localVariableInfo = localVariableInfos[index];
143 if (localVariableInfo.u2index >= 0 &&
144 localVariableInfo.u2index < maxLocals &&
145 (localVariableInfo.u2startPC == 0 ||
146 localVariableInfo.u2length > 0))
195 private void trimLocalVariables(LocalVariableInfo[] localVariableInfos,
207 LocalVariableInfo localVariableInfo = localVariableInfos[index]
    [all...]
CodeAttributeComposer.java 649 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo)
653 int startPC = newInstructionOffset(localVariableInfo.u2startPC);
654 int endPC = newInstructionOffset(localVariableInfo.u2startPC +
655 localVariableInfo.u2length);
657 localVariableInfo.u2startPC = startPC;
658 localVariableInfo.u2length = endPC - startPC;
829 private int removeEmptyLocalVariables(LocalVariableInfo[] localVariableInfos,
837 LocalVariableInfo localVariableInfo = localVariableInfos[index]
    [all...]
  /external/proguard/src/proguard/shrink/
LocalVariableTypeUsageMarker.java 106 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo)
110 localVariableInfo.referencedClassAccept(this);
115 usageMarker.markAsUsed(localVariableInfo);
117 markConstant(clazz, localVariableInfo.u2nameIndex);
118 markConstant(clazz, localVariableInfo.u2descriptorIndex);
  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.java 478 localVariableTableAttribute.localVariableTable = new LocalVariableInfo[localVariableTableAttribute.u2localVariableTableLength];
481 LocalVariableInfo localVariableInfo = new LocalVariableInfo();
482 visitLocalVariableInfo(clazz, method, codeAttribute, localVariableInfo);
483 localVariableTableAttribute.localVariableTable[index] = localVariableInfo;
707 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo)
709 localVariableInfo.u2startPC = dataInput.readUnsignedShort();
710 localVariableInfo.u2length = dataInput.readUnsignedShort()
    [all...]
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.11/
proguard-base-4.11.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 

Completed in 155 milliseconds