OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:constantIndexMap
(Results
1 - 6
of
6
) sorted by null
/external/proguard/src/proguard/obfuscate/
NameAndTypeShrinker.java
39
private int[]
constantIndexMap
;
55
constantPoolRemapper.setConstantIndexMap(
constantIndexMap
);
75
if (
constantIndexMap
== null ||
76
constantIndexMap
.length < length)
78
constantIndexMap
= new int[length];
87
constantIndexMap
[index] = counter;
Utf8Shrinker.java
39
private int[]
constantIndexMap
= new int[ClassConstants.TYPICAL_CONSTANT_POOL_SIZE];
54
constantPoolRemapper.setConstantIndexMap(
constantIndexMap
);
74
if (
constantIndexMap
.length < length)
76
constantIndexMap
= new int[length];
85
constantIndexMap
[index] = counter;
/external/proguard/src/proguard/classfile/editor/
ConstantPoolSorter.java
41
private int[]
constantIndexMap
= new int[ClassConstants.TYPICAL_CONSTANT_POOL_SIZE];
55
if (
constantIndexMap
.length < constantPoolCount)
57
constantIndexMap
= new int[constantPoolCount];
108
constantIndexMap
[comparableConstant.getIndex()] = newIndex;
123
constantPoolRemapper.setConstantIndexMap(
constantIndexMap
);
ConstantPoolRemapper.java
62
private int[]
constantIndexMap
;
69
public void setConstantIndexMap(int[]
constantIndexMap
)
71
this.
constantIndexMap
=
constantIndexMap
;
615
return
constantIndexMap
[constantIndex];
/external/proguard/src/proguard/shrink/
ClassShrinker.java
51
private int[]
constantIndexMap
= new int[ClassConstants.TYPICAL_CONSTANT_POOL_SIZE];
102
constantPoolRemapper.setConstantIndexMap(
constantIndexMap
);
324
if (
constantIndexMap
.length < length)
326
constantIndexMap
= new int[length];
335
constantIndexMap
[index] = counter;
/external/proguard/lib/
proguard.jar
Completed in 373 milliseconds