Searched defs:constantIndexMap (Results 1 - 8 of 8) sorted by relevance

/external/proguard/src/proguard/classfile/editor/
H A DConstantPoolSorter.java41 private int[] constantIndexMap = new int[ClassConstants.TYPICAL_CONSTANT_POOL_SIZE]; field in class:ConstantPoolSorter
55 if (constantIndexMap.length < constantPoolCount)
57 constantIndexMap = new int[constantPoolCount];
108 constantIndexMap[comparableConstant.getIndex()] = newIndex;
120 constantPoolRemapper.setConstantIndexMap(constantIndexMap);
H A DBootstrapMethodRemapper.java47 private int[] constantIndexMap; field in class:BootstrapMethodRemapper
54 public void setConstantIndexMap(int[] constantIndexMap) argument
56 this.constantIndexMap = constantIndexMap;
80 int remappedConstantIndex = constantIndexMap[constantIndex];
H A DNameAndTypeShrinker.java49 private int[] constantIndexMap; field in class:NameAndTypeShrinker
77 constantPoolRemapper.setConstantIndexMap(constantIndexMap);
153 if (constantIndexMap == null ||
154 constantIndexMap.length < length)
156 constantIndexMap = new int[length];
178 constantIndexMap[index] = counter;
186 constantIndexMap[index] = -1;
H A DUtf8Shrinker.java58 private int[] constantIndexMap = new int[ClassConstants.TYPICAL_CONSTANT_POOL_SIZE]; field in class:Utf8Shrinker
88 constantPoolRemapper.setConstantIndexMap(constantIndexMap);
442 if (constantIndexMap.length < length)
444 constantIndexMap = new int[length];
466 constantIndexMap[index] = counter;
474 constantIndexMap[index] = -1;
H A DConstantPoolRemapper.java64 private int[] constantIndexMap; field in class:ConstantPoolRemapper
71 public void setConstantIndexMap(int[] constantIndexMap) argument
73 this.constantIndexMap = constantIndexMap;
680 int remappedConstantIndex = constantIndexMap[constantIndex];
H A DConstantPoolShrinker.java65 private int[] constantIndexMap = new int[ClassConstants.TYPICAL_CONSTANT_POOL_SIZE]; field in class:ConstantPoolShrinker
101 constantPoolRemapper.setConstantIndexMap(constantIndexMap);
564 if (constantIndexMap.length < length)
566 constantIndexMap = new int[length];
587 constantIndexMap[index] = counter;
595 constantIndexMap[index] = -1;
/external/proguard/src/proguard/shrink/
H A DClassShrinker.java53 private int[] constantIndexMap = new int[ClassConstants.TYPICAL_CONSTANT_POOL_SIZE]; field in class:ClassShrinker
113 constantPoolRemapper.setConstantIndexMap(constantIndexMap);
365 if (constantIndexMap.length < length)
367 constantIndexMap = new int[length];
376 constantIndexMap[index] = counter;
390 constantIndexMap[index] = counter;
398 constantIndexMap[index] = -1;
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/ proguard/DuplicateClassPrinter.class DuplicateClassPrinter.java package proguard ...

Completed in 331 milliseconds