HomeSort by relevance Sort by last modified time
    Searched refs:oldIndex (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/proguard/src/proguard/optimize/evaluation/
VariableOptimizer.java 118 for (int oldIndex = 0; oldIndex < variableSize; oldIndex++)
121 variableMap[oldIndex] = oldIndex;
124 if (oldIndex >= parameterSize &&
125 oldIndex < MAX_VARIABLES_SIZE)
128 for (int newIndex = startIndex; newIndex < oldIndex; newIndex++)
130 if (areNonOverlapping(oldIndex, newIndex, codeLength))
132 variableMap[oldIndex] = newIndex
    [all...]
  /external/proguard/src/proguard/classfile/editor/
ConstantPoolSorter.java 64 for (int oldIndex = 1; oldIndex < constantPoolCount; oldIndex++)
66 Constant constant = programClass.constantPool[oldIndex];
70 new ComparableConstant(programClass, oldIndex, constant);
  /external/chromium_org/third_party/icu/source/tools/toolutil/
toolutil.cpp 304 int32_t oldIndex=mem->idx;
305 int32_t newIndex=oldIndex+1;
307 p=(char *)mem->array+oldIndex*mem->size;
317 int32_t oldIndex=mem->idx;
318 int32_t newIndex=oldIndex+n;
320 p=(char *)mem->array+oldIndex*mem->size;
  /external/icu4c/tools/toolutil/
toolutil.cpp 308 int32_t oldIndex=mem->idx;
309 int32_t newIndex=oldIndex+1;
311 p=(char *)mem->array+oldIndex*mem->size;
321 int32_t oldIndex=mem->idx;
322 int32_t newIndex=oldIndex+n;
324 p=(char *)mem->array+oldIndex*mem->size;
  /external/chromium_org/chrome/browser/resources/file_manager/js/
folder_shortcuts_data_model.js 224 var oldIndex = 0; // Index of oldArray.
229 for (; oldIndex < oldArray.length; oldIndex++) {
231 // oldArray[oldIndex] is deleted, which is not in the new array.
232 permutation[oldIndex] = -1;
239 if (oldArray[oldIndex] == newArray[newIndex]) {
240 permutation[oldIndex] = newIndex;
245 // oldArray[oldIndex] is deleted, which is not in the new array.
246 if (this.compare(oldArray[oldIndex], newArray[newIndex]) < 0) {
247 permutation[oldIndex] = -1
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpecList.java 313 for (int oldIndex = 0; oldIndex < size(); oldIndex++) {
314 if (!exclusionSet.get(oldIndex)) {
315 result.set0(newIndex, get0(oldIndex));
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
RegisterSpecList.java 314 for (int oldIndex = 0; oldIndex < size(); oldIndex++) {
315 if (!exclusionSet.get(oldIndex)) {
316 result.set0(newIndex, get0(oldIndex));
  /dalvik/dx/src/com/android/dx/ssa/
SsaBasicBlock.java 488 * RuntimeException if {@code oldIndex} was not a successor.
490 * @param oldIndex index of old successor block
493 public void replaceSuccessor(int oldIndex, int newIndex) {
494 if (oldIndex == newIndex) {
501 if (primarySuccessor == oldIndex) {
506 if (successorList.get(i) == oldIndex) {
511 successors.clear(oldIndex);
517 parent.getBlocks().get(oldIndex).predecessors.clear(index);
523 * @param oldIndex index of successor block to remove
525 public void removeSuccessor(int oldIndex) {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaBasicBlock.java 489 * RuntimeException if {@code oldIndex} was not a successor.
491 * @param oldIndex index of old successor block
494 public void replaceSuccessor(int oldIndex, int newIndex) {
495 if (oldIndex == newIndex) {
502 if (primarySuccessor == oldIndex) {
507 if (successorList.get(i) == oldIndex) {
512 successors.clear(oldIndex);
518 parent.getBlocks().get(oldIndex).predecessors.clear(index);
524 * @param oldIndex index of successor block to remove
526 public void removeSuccessor(int oldIndex) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleSheetCollection.cpp 185 for (unsigned oldIndex = 0; oldIndex < oldStylesheetCount; ++oldIndex) {
188 while (oldStyleSheets[oldIndex] != newStylesheets[newIndex]) {
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 125 int oldIndex = toInsert.index;
126 toInsert.parent.children.remove(oldIndex);
127 toInsert.parent.refreshIndices(oldIndex);
  /external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAlloc.cpp 332 size_t oldIndex = partitionAllocRoundup(oldSize) >> kBucketShift;
333 if (oldIndex > kNumBuckets)
334 oldIndex = kNumBuckets;
339 if (oldIndex == newIndex) {
342 if (oldIndex == kNumBuckets)
  /dalvik/dx/src/com/android/dx/merge/
DexMerger.java 342 abstract void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex);
386 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
387 indexMap.stringIds[oldIndex] = newIndex;
409 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
413 indexMap.typeIds[oldIndex] = (short) newIndex;
432 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
452 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
456 indexMap.protoIds[oldIndex] = (short) newIndex;
475 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
479 indexMap.fieldIds[oldIndex] = (short) newIndex
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrTextureStripAtlas.cpp 141 int oldIndex = this->searchByKey(oldKey);
142 if (oldIndex < index) {
146 fKeyTable.remove(oldIndex);
  /external/skia/src/gpu/effects/
GrTextureStripAtlas.cpp 141 int oldIndex = this->searchByKey(oldKey);
142 if (oldIndex < index) {
146 fKeyTable.remove(oldIndex);
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_controller.h 365 oldParent:(const BookmarkNode*)oldParent oldIndex:(int)oldIndex
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_controller.h 373 oldParent:(const BookmarkNode*)oldParent oldIndex:(int)oldIndex
  /external/chromium_org/third_party/icu/source/common/
ucnv_io.c     [all...]
uresdata.c 753 int32_t i, oldIndex;
868 oldIndex=pTempTable->rows[i].sortIndex;
869 ds->swapArray16(ds, pKey16+oldIndex, 2, rKey16+i, pErrorCode);
883 oldIndex=pTempTable->rows[i].sortIndex;
884 ds->swapArray32(ds, pKey32+oldIndex, 4, rKey32+i, pErrorCode);
902 oldIndex=pTempTable->rows[i].sortIndex;
903 ds->swapArray32(ds, p+oldIndex, 4, r+i, pErrorCode);
    [all...]
propname.cpp 461 int32_t i, size, oldIndex;
541 oldIndex=sortArray[i].index;
542 ds->swapArray32(ds, inEnumArray+oldIndex, 4, outEnumArray+i, pErrorCode);
543 ds->swapArray16(ds, inNameArray+oldIndex, 2, outNameArray+i, pErrorCode);
  /external/icu4c/common/
ucnv_io.cpp     [all...]
uresdata.c 772 int32_t i, oldIndex;
887 oldIndex=pTempTable->rows[i].sortIndex;
888 ds->swapArray16(ds, pKey16+oldIndex, 2, rKey16+i, pErrorCode);
902 oldIndex=pTempTable->rows[i].sortIndex;
903 ds->swapArray32(ds, pKey32+oldIndex, 4, rKey32+i, pErrorCode);
921 oldIndex=pTempTable->rows[i].sortIndex;
922 ds->swapArray32(ds, p+oldIndex, 4, r+i, pErrorCode);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Mesh.java     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vertex.c 468 GLuint oldIndex;
471 update_input_ptrs(ctx, oldIndex = elts[start++]);
476 adjust_input_ptrs(ctx, elts[start] - oldIndex);
477 oldIndex = elts[start];
  /external/mesa3d/src/mesa/tnl/
t_vertex.c 468 GLuint oldIndex;
471 update_input_ptrs(ctx, oldIndex = elts[start++]);
476 adjust_input_ptrs(ctx, elts[start] - oldIndex);
477 oldIndex = elts[start];

Completed in 1012 milliseconds

1 2 3 4