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

  /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/icu4c/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;
  /dalvik/dx/src/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/merge/
InstructionTransformer.java 101 private static void jumboCheck(int oldIndex, int newIndex) {
102 if ((oldIndex <= 0xffff) && (newIndex > 0xffff)) {
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) {
410 indexMap.typeIds[oldIndex] = (short) newIndex;
429 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
449 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
450 indexMap.protoIds[oldIndex] = (short) newIndex;
469 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
470 indexMap.fieldIds[oldIndex] = (short) newIndex
    [all...]
  /dalvik/dx/src/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...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 121 int oldIndex = toInsert.index;
122 toInsert.parent.children.remove(oldIndex);
123 toInsert.parent.refreshIndices(oldIndex);
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_controller.h 365 oldParent:(const BookmarkNode*)oldParent oldIndex:(int)oldIndex
  /external/icu4c/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);
  /frameworks/base/media/java/android/media/
AudioService.java 526 final int oldIndex = (streamState.muteCount() != 0) ? streamState.mLastAudibleIndex : streamState.mIndex;
541 adjustVolume = checkForRingerModeChange(oldIndex, direction, streamTypeAlias);
564 sendVolumeUpdate(streamType, oldIndex, index, flags);
572 final int oldIndex = (streamState.muteCount() != 0) ? streamState.mLastAudibleIndex : streamState.mIndex;
596 sendVolumeUpdate(streamType, oldIndex, index, flags);
600 private void sendVolumeUpdate(int streamType, int oldIndex, int index, int flags) {
607 oldIndex = (oldIndex + 5) / 10;
612 intent.putExtra(AudioManager.EXTRA_PREV_VOLUME_STREAM_VALUE, oldIndex);
    [all...]
  /frameworks/base/core/java/android/view/
ScaleGestureDetector.java 486 private int findNewActiveIndex(MotionEvent ev, int otherActiveId, int oldIndex) {
495 if (i != oldIndex && i != otherActiveIndex) {
  /external/guava/src/com/google/common/collect/
CustomConcurrentHashMap.java     [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ScriptsPanel.js 547 var oldIndex = this._currentBackForwardIndex;
548 if (oldIndex >= 0)
549 this._backForwardList.splice(oldIndex + 1, this._backForwardList.length - oldIndex);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java     [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowManagerService.java     [all...]
  /external/icu4c/test/intltest/
regextst.cpp 144 int64_t oldIndex = utext_getNativeIndex(text);
169 utext_setNativeIndex(text, oldIndex);
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 1846 milliseconds