Searched refs:newIndex (Results 1 - 25 of 93) sorted by relevance

1234

/external/proguard/src/proguard/obfuscate/
H A DParameterNameMarker.java64 int newIndex = 0;
73 localVariableTableAttribute.localVariableTable[newIndex++] =
79 localVariableTableAttribute.u2localVariableTableLength = newIndex;
82 if (newIndex > 0)
96 int newIndex = 0;
105 localVariableTypeTableAttribute.localVariableTypeTable[newIndex++] =
111 localVariableTypeTableAttribute.u2localVariableTypeTableLength = newIndex;
114 if (newIndex > 0)
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DZeroRegisterDecodedInstruction.java39 public DecodedInstruction withIndex(int newIndex) { argument
41 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DOneRegisterDecodedInstruction.java50 public DecodedInstruction withIndex(int newIndex) { argument
52 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DRegisterRangeDecodedInstruction.java55 public DecodedInstruction withIndex(int newIndex) { argument
57 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DTwoRegisterDecodedInstruction.java59 public DecodedInstruction withIndex(int newIndex) { argument
61 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DPackedSwitchPayloadDecodedInstruction.java59 public DecodedInstruction withIndex(int newIndex) { argument
H A DFiveRegisterDecodedInstruction.java86 public DecodedInstruction withIndex(int newIndex) { argument
88 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DFourRegisterDecodedInstruction.java77 public DecodedInstruction withIndex(int newIndex) { argument
79 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DThreeRegisterDecodedInstruction.java68 public DecodedInstruction withIndex(int newIndex) { argument
70 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DSparseSwitchPayloadDecodedInstruction.java63 public DecodedInstruction withIndex(int newIndex) { argument
H A DFillArrayDataPayloadDecodedInstruction.java97 public DecodedInstruction withIndex(int newIndex) { argument
/external/javassist/src/main/javassist/convert/
H A DTransformFieldAccess.java30 private int newIndex; field in class:TransformFieldAccess
47 newIndex = 0;
67 if (newIndex == 0) {
70 newIndex = cp.addFieldrefInfo(
75 iterator.write16bit(newIndex, pos + 1);
H A DTransformCall.java31 protected int newIndex; field in class:TransformCall
55 newIndex = 0;
110 if (newIndex == 0) {
115 newIndex = cp.addInterfaceMethodrefInfo(ci, nt);
120 newIndex = cp.addMethodrefInfo(ci, nt);
126 iterator.write16bit(newIndex, pos + 1);
H A DTransformBefore.java54 if (newIndex == 0) {
59 newIndex = cp.addMethodrefInfo(ci, nt);
75 iterator.write16bit(newIndex, p + 1);
H A DTransformAfter.java42 iterator.write16bit(newIndex, pos + 1);
/external/proguard/src/proguard/classfile/util/
H A DAllParameterVisitor.java175 int newIndex = index + 1;
198 newIndex = descriptor.indexOf(ClassConstants.TYPE_CLASS_END, newIndex) + 1;
207 while ((c = descriptor.charAt(newIndex++)) == ClassConstants.TYPE_ARRAY) {}
212 newIndex = descriptor.indexOf(ClassConstants.TYPE_CLASS_END, newIndex) + 1;
231 descriptor.substring(index, newIndex),
235 index = newIndex;
/external/proguard/src/proguard/classfile/editor/
H A DVariableCleaner.java138 int newIndex = 0;
148 localVariableInfos[newIndex++] = localVariableInfos[index];
153 Arrays.fill(localVariableInfos, newIndex, localVariableInfoCount, null);
155 return newIndex;
169 int newIndex = 0;
179 localVariableTypeInfos[newIndex++] = localVariableTypeInfos[index];
184 Arrays.fill(localVariableTypeInfos, newIndex, localVariableTypeInfoCount, null);
186 return newIndex;
H A DConstantPoolSorter.java79 int newIndex = 1;
89 newIndex = newLength;
108 constantIndexMap[comparableConstant.getIndex()] = newIndex;
H A DCodeAttributeComposer.java815 int newIndex = 0;
821 exceptionInfos[newIndex++] = exceptionInfo;
826 Arrays.fill(exceptionInfos, newIndex, exceptionInfoCount, null);
828 return newIndex;
841 int newIndex = 0;
849 lineNumberInfos[newIndex++] = lineNumberInfo;
854 Arrays.fill(lineNumberInfos, newIndex, lineNumberInfoCount, null);
856 return newIndex;
869 int newIndex = 0;
876 localVariableInfos[newIndex
[all...]
/external/proguard/src/proguard/optimize/peephole/
H A DUnreachableExceptionRemover.java144 int newIndex = 0;
150 exceptionInfos[newIndex++] = exceptionInfo;
154 return newIndex;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMStringPool.java125 int newIndex=m_intToString.size();
130 m_hashStart[hashslot]=newIndex;
132 m_hashChain.setElementAt(newIndex,hashlast);
134 return newIndex;
H A DExpandedNameTable.java262 int newIndex = e.hash % newCapacity;
263 if (newIndex < 0)
264 newIndex = -newIndex;
266 e.next = m_table[newIndex];
267 m_table[newIndex] = e;
/external/icu/icu4c/source/common/unicode/
H A Dparsepos.h61 * @param newIndex the new text offset.
64 ParsePosition(int32_t newIndex) argument
66 index(newIndex),
/external/javassist/src/main/javassist/expr/
H A DNewExpr.java167 int newIndex = iterator.u16bitAt(pos + 1);
192 jc.recordProceed(new ProceedForNew(newType, newIndex,
221 int newIndex, methodIndex; field in class:NewExpr.ProceedForNew
225 newIndex = ni;
233 bytecode.addIndex(newIndex);
/external/proguard/src/proguard/evaluation/value/
H A DInstructionOffsetValue.java188 int newIndex = 0;
197 newIndex = thisValues.length;
206 newValues[newIndex++] = thisValues[index];
212 System.arraycopy(otherValues, 0, newValues, newIndex, otherValues.length);

Completed in 559 milliseconds

1234