/external/proguard/src/proguard/optimize/evaluation/ |
D | VariableOptimizer.java | 126 for (int oldIndex = 0; oldIndex < variableSize; oldIndex++) in visitCodeAttribute() 129 variableMap[oldIndex] = oldIndex; in visitCodeAttribute() 132 if (oldIndex >= parameterSize && in visitCodeAttribute() 133 oldIndex < MAX_VARIABLES_SIZE) in visitCodeAttribute() 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/proguard/src/proguard/classfile/editor/ |
D | ConstantPoolSorter.java | 64 for (int oldIndex = 1; oldIndex < constantPoolCount; oldIndex++) in visitProgramClass() 66 Constant constant = programClass.constantPool[oldIndex]; in visitProgramClass() 70 new ComparableConstant(programClass, oldIndex, constant); in visitProgramClass()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | LocaleIDParser.java | 242 int oldIndex = index; // save original index in parseScript() local 260 if (index - oldIndex != 5) { // +1 to account for separator in parseScript() 261 index = oldIndex; in parseScript() 281 int oldIndex = index; in skipScript() local 288 if (index - oldIndex != 5) { // +1 to account for separator in skipScript() 289 index = oldIndex; in skipScript() 301 int oldIndex = index; in parseCountry() local 326 index = oldIndex; in parseCountry() 358 int oldIndex = index; in skipCountry() local 361 int charsSkipped = index - oldIndex; in skipCountry() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | LocaleIDParser.java | 240 int oldIndex = index; // save original index in parseScript() local 258 if (index - oldIndex != 5) { // +1 to account for separator in parseScript() 259 index = oldIndex; in parseScript() 279 int oldIndex = index; in skipScript() local 286 if (index - oldIndex != 5) { // +1 to account for separator in skipScript() 287 index = oldIndex; in skipScript() 299 int oldIndex = index; in parseCountry() local 324 index = oldIndex; in parseCountry() 356 int oldIndex = index; in skipCountry() local 359 int charsSkipped = index - oldIndex; in skipCountry() [all …]
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/ |
D | LocaleIDParser.java | 240 int oldIndex = index; // save original index in parseScript() local 258 if (index - oldIndex != 5) { // +1 to account for separator in parseScript() 259 index = oldIndex; in parseScript() 279 int oldIndex = index; in skipScript() local 286 if (index - oldIndex != 5) { // +1 to account for separator in skipScript() 287 index = oldIndex; in skipScript() 299 int oldIndex = index; in parseCountry() local 324 index = oldIndex; in parseCountry() 356 int oldIndex = index; in skipCountry() local 359 int charsSkipped = index - oldIndex; in skipCountry() [all …]
|
/external/icu/icu4c/source/tools/toolutil/ |
D | toolutil.cpp | 334 int32_t oldIndex=mem->idx; in utm_alloc() local 335 int32_t newIndex=oldIndex+1; in utm_alloc() 337 p=(char *)mem->array+oldIndex*mem->size; in utm_alloc() 347 int32_t oldIndex=mem->idx; in utm_allocN() local 348 int32_t newIndex=oldIndex+n; in utm_allocN() 350 p=(char *)mem->array+oldIndex*mem->size; in utm_allocN()
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
D | RegisterSpecList.java | 314 for (int oldIndex = 0; oldIndex < size(); oldIndex++) { in subset() 315 if (!exclusionSet.get(oldIndex)) { in subset() 316 result.set0(newIndex, get0(oldIndex)); in subset()
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
D | SsaBasicBlock.java | 494 public void replaceSuccessor(int oldIndex, int newIndex) { in replaceSuccessor() argument 495 if (oldIndex == newIndex) { in replaceSuccessor() 502 if (primarySuccessor == oldIndex) { in replaceSuccessor() 507 if (successorList.get(i) == oldIndex) { in replaceSuccessor() 512 successors.clear(oldIndex); in replaceSuccessor() 518 parent.getBlocks().get(oldIndex).predecessors.clear(index); in replaceSuccessor() 526 public void removeSuccessor(int oldIndex) { in removeSuccessor() argument 530 if (successorList.get(i) == oldIndex) { in removeSuccessor() 538 successors.clear(oldIndex); in removeSuccessor() 539 parent.getBlocks().get(oldIndex).predecessors.clear(index); in removeSuccessor()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | ScientificNumberFormatter.java | 143 int oldIndex = iterator.getIndex(); in append() local 149 iterator.setIndex(oldIndex); in append() 276 int oldIndex = iterator.getIndex(); in copyAsSuperscript() local 286 iterator.setIndex(oldIndex); in copyAsSuperscript()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | ScientificNumberFormatter.java | 139 int oldIndex = iterator.getIndex(); in append() local 145 iterator.setIndex(oldIndex); in append() 272 int oldIndex = iterator.getIndex(); in copyAsSuperscript() local 282 iterator.setIndex(oldIndex); in copyAsSuperscript()
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
D | Mesh.java | 1077 int oldIndex = indexBuf.get(i); in extractVertexData() local 1079 if (!oldIndicesToNewIndices.containsKey(oldIndex)) { in extractVertexData() 1082 oldIndicesToNewIndices.put(oldIndex, newIndex); in extractVertexData() 1083 newIndicesToOldIndices.add(oldIndex); in extractVertexData() 1109 int oldIndex = indexBuf.get(i); in extractVertexData() local 1110 newIndex = oldIndicesToNewIndices.get(oldIndex); in extractVertexData() 1141 int oldIndex = newIndicesToOldIndices.get(i); in extractVertexData() local 1145 oldVb.copyElement(oldIndex, newVb, i); in extractVertexData()
|
/external/skia/src/gpu/effects/ |
D | GrTextureStripAtlas.cpp | 142 int oldIndex = this->searchByKey(oldKey); in lockRow() local 143 if (oldIndex < index) { in lockRow() 147 fKeyTable.remove(oldIndex); in lockRow()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
D | CTableCombo.java | 389 int oldIndex = getSelectionIndex(); in handleTextEvent() local 391 select(Math.max(oldIndex - 1, 0)); in handleTextEvent() 393 select(Math.min(oldIndex + 1, getItemCount() - 1)); in handleTextEvent() 395 if (oldIndex != getSelectionIndex()) { in handleTextEvent() 409 int oldIndex = getSelectionIndex(); in handleTextEvent() local 420 if (oldIndex != getSelectionIndex()) { in handleTextEvent()
|
/external/icu/icu4c/source/common/ |
D | ucnv_io.cpp | 1201 uint16_t oldIndex; in ucnv_swapAliases() local 1284 oldIndex=tempTable.rows[i].sortIndex; in ucnv_swapAliases() 1285 ds->swapArray16(ds, p+oldIndex, 2, q+i, pErrorCode); in ucnv_swapAliases() 1286 ds->swapArray16(ds, p2+oldIndex, 2, q2+i, pErrorCode); in ucnv_swapAliases() 1297 oldIndex=tempTable.rows[i].sortIndex; in ucnv_swapAliases() 1298 ds->swapArray16(ds, p+oldIndex, 2, r+i, pErrorCode); in ucnv_swapAliases() 1303 oldIndex=tempTable.rows[i].sortIndex; in ucnv_swapAliases() 1304 ds->swapArray16(ds, p2+oldIndex, 2, r+i, pErrorCode); in ucnv_swapAliases()
|
D | uresdata.cpp | 1090 int32_t i, oldIndex; in ures_swapResource() local 1205 oldIndex=pTempTable->rows[i].sortIndex; in ures_swapResource() 1206 ds->swapArray16(ds, pKey16+oldIndex, 2, rKey16+i, pErrorCode); in ures_swapResource() 1220 oldIndex=pTempTable->rows[i].sortIndex; in ures_swapResource() 1221 ds->swapArray32(ds, pKey32+oldIndex, 4, rKey32+i, pErrorCode); in ures_swapResource() 1239 oldIndex=pTempTable->rows[i].sortIndex; in ures_swapResource() 1240 ds->swapArray32(ds, p+oldIndex, 4, r+i, pErrorCode); in ures_swapResource()
|
/external/mesa3d/src/mesa/tnl/ |
D | t_vertex.c | 468 GLuint oldIndex; in _tnl_emit_indexed_vertices_to_buffer() local 471 update_input_ptrs(ctx, oldIndex = elts[start++]); in _tnl_emit_indexed_vertices_to_buffer() 476 adjust_input_ptrs(ctx, elts[start] - oldIndex); in _tnl_emit_indexed_vertices_to_buffer() 477 oldIndex = elts[start]; in _tnl_emit_indexed_vertices_to_buffer()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | ArchiveCommandLine.cpp | 402 int oldIndex = -1; in AddToCensorFromNonSwitchesStrings() local 413 if (oldIndex == -1) in AddToCensorFromNonSwitchesStrings() 414 oldIndex = startIndex; in AddToCensorFromNonSwitchesStrings() 418 …AddRenamePair(renamePairs, nonSwitchStrings[oldIndex], s, NRecursedType::kNonRecursed, wildcardMat… in AddToCensorFromNonSwitchesStrings() 420 oldIndex = -1; in AddToCensorFromNonSwitchesStrings() 427 if (oldIndex != -1) in AddToCensorFromNonSwitchesStrings() 429 … CArcCmdLineException("There is no second file name for rename pair:", nonSwitchStrings[oldIndex]); in AddToCensorFromNonSwitchesStrings()
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/ |
D | Chart.java | 132 int oldIndex = overIndex; in Chart() 145 if (overIndex != oldIndex) repaint(); in Chart()
|
/external/mesa3d/src/mesa/program/ |
D | program.c | 673 GLuint oldFile, GLuint oldIndex, in replace_registers() argument 681 inst[i].SrcReg[j].Index == oldIndex) { in replace_registers() 687 if (inst[i].DstReg.File == oldFile && inst[i].DstReg.Index == oldIndex) { in replace_registers()
|
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/ |
D | ShadowDOM.js | 421 var oldIndex = oldStart; 430 oldIndex++; 437 splice.removed.push(old[oldIndex]); 438 oldIndex++; 449 splice.removed.push(old[oldIndex]); 450 oldIndex++; 3596 var newIndex = 0, oldIndex = 0; 3601 oldIndex++; 3606 var wrapper = wrap(oldChildren[oldIndex++]); 3610 var refNode = oldChildren[oldIndex] && wrap(oldChildren[oldIndex]);
|
D | webcomponents.js | 462 var oldIndex = oldStart; 471 oldIndex++; 478 splice.removed.push(old[oldIndex]); 479 oldIndex++; 490 splice.removed.push(old[oldIndex]); 491 oldIndex++; 3599 var newIndex = 0, oldIndex = 0; 3604 oldIndex++; 3609 var wrapper = wrap(oldChildren[oldIndex++]); 3613 var refNode = oldChildren[oldIndex] && wrap(oldChildren[oldIndex]);
|
/external/guava/guava/src/com/google/common/collect/ |
D | MapMakerInternalMap.java | 2590 for (int oldIndex = 0; oldIndex < oldCapacity; ++oldIndex) { in expand() 2593 ReferenceEntry<K, V> head = oldTable.get(oldIndex); in expand()
|
/external/guava/guava/src/com/google/common/cache/ |
D | LocalCache.java | 2920 for (int oldIndex = 0; oldIndex < oldCapacity; ++oldIndex) { in expand() 2923 ReferenceEntry<K, V> head = oldTable.get(oldIndex); in expand()
|
/external/icu/icu4c/source/test/intltest/ |
D | regextst.cpp | 184 int64_t oldIndex = utext_getNativeIndex(text); in utextToPrintable() local 209 utext_setNativeIndex(text, oldIndex); in utextToPrintable()
|