Home
last modified time | relevance | path

Searched refs:oldIndex (Results 1 – 25 of 35) sorted by relevance

12

/external/proguard/src/proguard/optimize/evaluation/
DVariableOptimizer.java126 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/
DConstantPoolSorter.java64 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/icu4j/main/classes/core/src/com/ibm/icu/impl/
DLocaleIDParser.java240 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/
Dtoolutil.cpp334 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/
DRegisterSpecList.java314 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/
DSsaBasicBlock.java494 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/
DScientificNumberFormatter.java142 int oldIndex = iterator.getIndex(); in append() local
148 iterator.setIndex(oldIndex); in append()
275 int oldIndex = iterator.getIndex(); in copyAsSuperscript() local
285 iterator.setIndex(oldIndex); in copyAsSuperscript()
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
DMesh.java1077 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/icu/icu4c/source/common/
Ducnv_io.cpp1201 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()
Duresdata.c768 int32_t i, oldIndex; in ures_swapResource() local
883 oldIndex=pTempTable->rows[i].sortIndex; in ures_swapResource()
884 ds->swapArray16(ds, pKey16+oldIndex, 2, rKey16+i, pErrorCode); in ures_swapResource()
898 oldIndex=pTempTable->rows[i].sortIndex; in ures_swapResource()
899 ds->swapArray32(ds, pKey32+oldIndex, 4, rKey32+i, pErrorCode); in ures_swapResource()
917 oldIndex=pTempTable->rows[i].sortIndex; in ures_swapResource()
918 ds->swapArray32(ds, p+oldIndex, 4, r+i, pErrorCode); in ures_swapResource()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
DCTableCombo.java389 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/skia/src/gpu/effects/
DGrTextureStripAtlas.cpp145 int oldIndex = this->searchByKey(oldKey); in lockRow() local
146 if (oldIndex < index) { in lockRow()
150 fKeyTable.remove(oldIndex); in lockRow()
/external/mesa3d/src/mesa/tnl/
Dt_vertex.c468 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/mesa3d/src/mesa/program/
Dprogram.c673 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/trace-viewer/tracing/third_party/components/webcomponentsjs/
DShadowDOM.js420 var oldIndex = oldStart;
429 oldIndex++;
436 splice.removed.push(old[oldIndex]);
437 oldIndex++;
448 splice.removed.push(old[oldIndex]);
449 oldIndex++;
3554 var newIndex = 0, oldIndex = 0;
3559 oldIndex++;
3564 var wrapper = wrap(oldChildren[oldIndex++]);
3568 var refNode = oldChildren[oldIndex] && wrap(oldChildren[oldIndex]);
Dwebcomponents.js461 var oldIndex = oldStart;
470 oldIndex++;
477 splice.removed.push(old[oldIndex]);
478 oldIndex++;
489 splice.removed.push(old[oldIndex]);
490 oldIndex++;
3557 var newIndex = 0, oldIndex = 0;
3562 oldIndex++;
3567 var wrapper = wrap(oldChildren[oldIndex++]);
3571 var refNode = oldChildren[oldIndex] && wrap(oldChildren[oldIndex]);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.core.databinding.property_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.core.databinding_1.3.100.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.jface.databinding_1.4.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/guava/guava/src/com/google/common/collect/
DMapMakerInternalMap.java2590 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/
DLocalCache.java2917 for (int oldIndex = 0; oldIndex < oldCapacity; ++oldIndex) { in expand()
2920 ReferenceEntry<K, V> head = oldTable.get(oldIndex); in expand()
/external/chromium-trace/trace-viewer/tracing/third_party/components/polymer/
Dpolymer.js5622 var oldIndex = oldStart;
5632 oldIndex++;
5641 splice.removed.push(old[oldIndex]);
5642 oldIndex++;
5655 splice.removed.push(old[oldIndex]);
5656 oldIndex++;
/external/icu/icu4c/source/test/intltest/
Dregextst.cpp181 int64_t oldIndex = utext_getNativeIndex(text); in utextToPrintable() local
206 utext_setNativeIndex(text, oldIndex); in utextToPrintable()

12