/external/proguard/src/proguard/obfuscate/ |
D | ParameterNameMarker.java | 64 int newIndex = 0; in visitLocalVariableTableAttribute() local 73 localVariableTableAttribute.localVariableTable[newIndex++] = in visitLocalVariableTableAttribute() 79 localVariableTableAttribute.u2localVariableTableLength = newIndex; in visitLocalVariableTableAttribute() 82 if (newIndex > 0) in visitLocalVariableTableAttribute() 96 int newIndex = 0; in visitLocalVariableTypeTableAttribute() local 105 localVariableTypeTableAttribute.localVariableTypeTable[newIndex++] = in visitLocalVariableTypeTableAttribute() 111 localVariableTypeTableAttribute.u2localVariableTypeTableLength = newIndex; in visitLocalVariableTypeTableAttribute() 114 if (newIndex > 0) in visitLocalVariableTypeTableAttribute()
|
/external/proguard/src/proguard/classfile/util/ |
D | AllParameterVisitor.java | 175 int newIndex = index + 1; in visitParameters() local 198 newIndex = descriptor.indexOf(ClassConstants.TYPE_CLASS_END, newIndex) + 1; in visitParameters() 207 while ((c = descriptor.charAt(newIndex++)) == ClassConstants.TYPE_ARRAY) {} in visitParameters() 212 newIndex = descriptor.indexOf(ClassConstants.TYPE_CLASS_END, newIndex) + 1; in visitParameters() 231 descriptor.substring(index, newIndex), in visitParameters() 235 index = newIndex; in visitParameters()
|
/external/proguard/src/proguard/classfile/editor/ |
D | VariableCleaner.java | 138 int newIndex = 0; in removeUnusedLocalVariables() local 148 localVariableInfos[newIndex++] = localVariableInfos[index]; in removeUnusedLocalVariables() 153 Arrays.fill(localVariableInfos, newIndex, localVariableInfoCount, null); in removeUnusedLocalVariables() 155 return newIndex; in removeUnusedLocalVariables() 169 int newIndex = 0; in removeUnusedLocalVariableTypes() local 179 localVariableTypeInfos[newIndex++] = localVariableTypeInfos[index]; in removeUnusedLocalVariableTypes() 184 Arrays.fill(localVariableTypeInfos, newIndex, localVariableTypeInfoCount, null); in removeUnusedLocalVariableTypes() 186 return newIndex; in removeUnusedLocalVariableTypes()
|
D | CodeAttributeComposer.java | 815 int newIndex = 0; in removeEmptyExceptions() local 821 exceptionInfos[newIndex++] = exceptionInfo; in removeEmptyExceptions() 826 Arrays.fill(exceptionInfos, newIndex, exceptionInfoCount, null); in removeEmptyExceptions() 828 return newIndex; in removeEmptyExceptions() 841 int newIndex = 0; in removeEmptyLineNumbers() local 849 lineNumberInfos[newIndex++] = lineNumberInfo; in removeEmptyLineNumbers() 854 Arrays.fill(lineNumberInfos, newIndex, lineNumberInfoCount, null); in removeEmptyLineNumbers() 856 return newIndex; in removeEmptyLineNumbers() 869 int newIndex = 0; in removeEmptyLocalVariables() local 876 localVariableInfos[newIndex++] = localVariableInfo; in removeEmptyLocalVariables() [all …]
|
D | ConstantPoolSorter.java | 79 int newIndex = 1; in visitProgramClass() local 89 newIndex = newLength; in visitProgramClass() 108 constantIndexMap[comparableConstant.getIndex()] = newIndex; in visitProgramClass()
|
D | CodeAttributeEditor.java | 1129 int newIndex = 0; in removeEmptyExceptions() local 1135 exceptionInfos[newIndex++] = exceptionInfo; in removeEmptyExceptions() 1139 return newIndex; in removeEmptyExceptions() 1152 int newIndex = 0; in removeEmptyLineNumbers() local 1160 lineNumberInfos[newIndex++] = lineNumberInfo; in removeEmptyLineNumbers() 1164 return newIndex; in removeEmptyLineNumbers()
|
/external/javassist/src/main/javassist/convert/ |
D | TransformFieldAccess.java | 30 private int newIndex; field in TransformFieldAccess 47 newIndex = 0; in initialize() 67 if (newIndex == 0) { in transform() 70 newIndex = cp.addFieldrefInfo( in transform() 75 iterator.write16bit(newIndex, pos + 1); in transform()
|
D | TransformCall.java | 31 protected int newIndex; field in TransformCall 55 newIndex = 0; in initialize() 110 if (newIndex == 0) { in match() 115 newIndex = cp.addInterfaceMethodrefInfo(ci, nt); in match() 120 newIndex = cp.addMethodrefInfo(ci, nt); in match() 126 iterator.write16bit(newIndex, pos + 1); in match()
|
D | TransformBefore.java | 54 if (newIndex == 0) { in match() 59 newIndex = cp.addMethodrefInfo(ci, nt); in match() 75 iterator.write16bit(newIndex, p + 1); in match2()
|
D | TransformAfter.java | 42 iterator.write16bit(newIndex, pos + 1); in match2()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | ExpandedNameTable.java | 262 int newIndex = e.hash % newCapacity; in rehash() local 263 if (newIndex < 0) in rehash() 264 newIndex = -newIndex; in rehash() 266 e.next = m_table[newIndex]; in rehash() 267 m_table[newIndex] = e; in rehash()
|
D | DTMStringPool.java | 125 int newIndex=m_intToString.size(); in stringToIndex() local 130 m_hashStart[hashslot]=newIndex; in stringToIndex() 132 m_hashChain.setElementAt(newIndex,hashlast); in stringToIndex() 134 return newIndex; in stringToIndex()
|
/external/proguard/src/proguard/optimize/evaluation/ |
D | VariableOptimizer.java | 136 for (int newIndex = startIndex; newIndex < oldIndex; newIndex++) in visitCodeAttribute() 138 if (areNonOverlapping(oldIndex, newIndex, codeLength)) in visitCodeAttribute() 140 variableMap[oldIndex] = newIndex; in visitCodeAttribute() 142 updateLiveness(oldIndex, newIndex, codeLength); in visitCodeAttribute()
|
/external/javassist/src/main/javassist/expr/ |
D | NewExpr.java | 167 int newIndex = iterator.u16bitAt(pos + 1); in replace() local 192 jc.recordProceed(new ProceedForNew(newType, newIndex, in replace() 221 int newIndex, methodIndex; field in NewExpr.ProceedForNew 225 newIndex = ni; in ProceedForNew() 233 bytecode.addIndex(newIndex); in doit()
|
/external/icu/icu4c/source/tools/toolutil/ |
D | toolutil.cpp | 337 int32_t newIndex=oldIndex+1; in utm_alloc() local 338 if(utm_hasCapacity(mem, newIndex)) { in utm_alloc() 340 mem->idx=newIndex; in utm_alloc() 350 int32_t newIndex=oldIndex+n; in utm_allocN() local 351 if(utm_hasCapacity(mem, newIndex)) { in utm_allocN() 353 mem->idx=newIndex; in utm_allocN()
|
/external/proguard/src/proguard/evaluation/value/ |
D | InstructionOffsetValue.java | 188 int newIndex = 0; in generalize() local 197 newIndex = thisValues.length; in generalize() 206 newValues[newIndex++] = thisValues[index]; in generalize() 212 System.arraycopy(otherValues, 0, newValues, newIndex, otherValues.length); in generalize()
|
/external/proguard/src/proguard/optimize/peephole/ |
D | UnreachableExceptionRemover.java | 144 int newIndex = 0; in removeEmptyExceptions() local 150 exceptionInfos[newIndex++] = exceptionInfo; in removeEmptyExceptions() 154 return newIndex; in removeEmptyExceptions()
|
/external/libjpeg-turbo/doc/html/search/ |
D | search.js | 628 var newIndex = itemIndex-1; 629 var focusItem = this.NavPrev(newIndex); 639 tmpElem = document.getElementById('Item'+newIndex+'_c'+n); 663 var newIndex = itemIndex+1; 671 if (!focusItem) focusItem = this.NavNext(newIndex); 708 var newIndex = childIndex-1; 709 document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); 718 var newIndex = childIndex+1; 719 var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex);
|
/external/icu/icu4c/source/common/unicode/ |
D | parsepos.h | 66 ParsePosition(int32_t newIndex) in ParsePosition() argument 68 index(newIndex), in ParsePosition()
|
/external/sonivox/arm-wt-22k/misc/ |
D | eas_host.c | 515 EAS_I32 newIndex; in EAS_HWFileSeek() local 526 newIndex = position - file->filePos + file->readIndex; in EAS_HWFileSeek() 527 if ((newIndex >= 0) && (newIndex < file->bytesInBuffer)) in EAS_HWFileSeek() 529 file->readIndex = newIndex; in EAS_HWFileSeek()
|
/external/lzma/CS/7zip/Common/ |
D | CommandLineParser.cs | 229 int newIndex = commandString.IndexOf(c); in ParseSubCharsCommand() 230 if (newIndex >= 0) in ParseSubCharsCommand() 234 if (commandString.IndexOf(c, newIndex + 1) >= 0) in ParseSubCharsCommand()
|
/external/icu/icu4c/source/i18n/ |
D | choicfmt.cpp | 521 int32_t newIndex = start + len; in parseArgument() local 522 if (newIndex > furthest) { in parseArgument() 523 furthest = newIndex; in parseArgument()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | Store.cpp | 184 int64_t newIndex = 0; in castRegion() local 196 newIndex = off / pointeeTySize; in castRegion() 208 return MakeElementRegion(newSuperR, PointeeTy, newIndex); in castRegion()
|
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/ |
D | EASLibVst.c | 788 EAS_I32 newIndex; in EAS_HWFileSeek() local 803 newIndex = position - file->filePos + file->readIndex; in EAS_HWFileSeek() 804 if ((newIndex >= 0) && (newIndex < file->bytesInBuffer)) in EAS_HWFileSeek() 806 file->readIndex = newIndex; in EAS_HWFileSeek()
|
/external/llvm/include/llvm/CodeGen/ |
D | SlotIndexes.h | 615 SlotIndex newIndex(&*newItr, SlotIndex::Slot_Block); 616 mi2iMap.insert(std::make_pair(&MI, newIndex)); 617 return newIndex;
|