HomeSort by relevance Sort by last modified time
    Searched defs:newIndex (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/chromium_org/chrome/browser/resources/file_manager/js/
folder_shortcuts_data_model.js 225 var newIndex = 0; // Index of newArray.
230 if (newIndex >= newArray.length) {
236 while (newIndex < newArray.length) {
239 if (oldArray[oldIndex] == newArray[newIndex]) {
240 permutation[oldIndex] = newIndex;
241 newIndex++;
246 if (this.compare(oldArray[oldIndex], newArray[newIndex]) < 0) {
252 // newArray[newIndex] is added, which is not in the old array.
253 newIndex++;
  /external/proguard/src/proguard/classfile/editor/
VariableCleaner.java 90 int newIndex = 0;
95 localVariableInfos[newIndex++] = localVariableInfos[index];
100 for (int index = newIndex; index < localVariableInfoCount; index++)
105 return newIndex;
118 int newIndex = 0;
123 localVariableTypeInfos[newIndex++] = localVariableTypeInfos[index];
128 for (int index = newIndex; index < localVariableTypeInfoCount; index++)
133 return newIndex;
ConstantPoolSorter.java 79 int newIndex = 1;
89 newIndex = newLength;
108 constantIndexMap[comparableConstant.getIndex()] = newIndex;
VariableRemapper.java 163 int newIndex = 0;
169 localVariableInfos[newIndex++] = localVariableInfo;
173 return newIndex;
185 int newIndex = 0;
191 localVariableTypeInfos[newIndex++] = localVariableTypeInfo;
195 return newIndex;
  /external/javassist/src/main/javassist/convert/
TransformFieldAccess.java 30 private int newIndex;
47 newIndex = 0;
67 if (newIndex == 0) {
70 newIndex = cp.addFieldrefInfo(
75 iterator.write16bit(newIndex, pos + 1);
TransformCall.java 31 protected int newIndex;
55 newIndex = 0;
110 if (newIndex == 0) {
115 newIndex = cp.addInterfaceMethodrefInfo(ci, nt);
120 newIndex = cp.addMethodrefInfo(ci, nt);
126 iterator.write16bit(newIndex, pos + 1);
  /external/proguard/src/proguard/optimize/peephole/
UnreachableExceptionRemover.java 151 int newIndex = 0;
157 exceptionInfos[newIndex++] = exceptionInfo;
161 return newIndex;
  /external/proguard/src/proguard/evaluation/value/
InstructionOffsetValue.java 184 int newIndex = 0;
191 newValues[newIndex++] = this.values[index];
198 newValues[newIndex++] = other.values[index];
  /external/srec/tools/grxmlcompile/
gr_iface.cpp 37 int *newIndex= new int [numSubGraph+BLKSIZE];
40 newIndex[ii]= subIndex[ii];
45 subIndex= newIndex;
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpecList.java 312 int newIndex = 0;
315 result.set0(newIndex, get0(oldIndex));
316 newIndex++;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMStringPool.java 125 int newIndex=m_intToString.size();
130 m_hashStart[hashslot]=newIndex;
132 m_hashChain.setElementAt(newIndex,hashlast);
134 return newIndex;
ExpandedNameTable.java 262 int newIndex = e.hash % newCapacity;
263 if (newIndex < 0)
264 newIndex = -newIndex;
266 e.next = m_table[newIndex];
267 m_table[newIndex] = e;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleSheetCollection.cpp 184 unsigned newIndex = 0;
186 if (newIndex >= newStylesheetCount)
188 while (oldStyleSheets[oldIndex] != newStylesheets[newIndex]) {
189 addedSheets.append(newStylesheets[newIndex]->contents());
190 ++newIndex;
191 if (newIndex == newStylesheetCount)
194 ++newIndex;
197 while (newIndex < newStylesheetCount) {
198 addedSheets.append(newStylesheets[newIndex]->contents());
199 ++newIndex;
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
RegisterSpecList.java 313 int newIndex = 0;
316 result.set0(newIndex, get0(oldIndex));
317 newIndex++;
  /external/chromium_org/third_party/icu/source/tools/toolutil/
toolutil.cpp 305 int32_t newIndex=oldIndex+1;
306 if(utm_hasCapacity(mem, newIndex)) {
308 mem->idx=newIndex;
318 int32_t newIndex=oldIndex+n;
319 if(utm_hasCapacity(mem, newIndex)) {
321 mem->idx=newIndex;
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 195 int64_t newIndex = 0;
207 newIndex = off / pointeeTySize;
219 return MakeElementRegion(newSuperR, PointeeTy, newIndex);
  /external/icu4c/i18n/
choicfmt.cpp 531 int32_t newIndex = start + len;
532 if (newIndex > furthest) {
533 furthest = newIndex;
  /external/icu4c/tools/toolutil/
toolutil.cpp 309 int32_t newIndex=oldIndex+1;
310 if(utm_hasCapacity(mem, newIndex)) {
312 mem->idx=newIndex;
322 int32_t newIndex=oldIndex+n;
323 if(utm_hasCapacity(mem, newIndex)) {
325 mem->idx=newIndex;
  /external/javassist/src/main/javassist/expr/
NewExpr.java 167 int newIndex = iterator.u16bitAt(pos + 1);
192 jc.recordProceed(new ProceedForNew(newType, newIndex,
221 int newIndex, methodIndex;
225 newIndex = ni;
233 bytecode.addIndex(newIndex);
  /external/sonivox/arm-wt-22k/misc/
eas_host.c 515 EAS_I32 newIndex;
526 newIndex = position - file->filePos + file->readIndex;
527 if ((newIndex >= 0) && (newIndex < file->bytesInBuffer))
529 file->readIndex = newIndex;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
PointerTrackerQueue.java 72 int newIndex = 0;
76 if (newIndex != index) {
81 if (newIndex != index) {
83 expandableArray.set(newIndex, element);
85 newIndex++;
87 mArraySize = newIndex;
104 int newIndex, index;
105 for (newIndex = index = 0; index < arraySize; index++) {
114 if (newIndex != index) {
116 expandableArray.set(newIndex, element)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMPatchSupport.cpp 237 size_t newIndex = newList.size() - i - 1;
239 oldMap[oldIndex].second = newIndex;
240 newMap[newIndex].first = newList[newIndex].get();
241 newMap[newIndex].second = oldIndex;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WordComposer.java 169 final int newIndex = size();
173 if (newIndex < MAX_WORD_LENGTH) {
174 mPrimaryKeyCodes[newIndex] = primaryCode >= Constants.CODE_SPACE
181 mInputPointers.addPointer(newIndex, keyX, keyY, 0, 0);
185 newIndex, primaryCode, mIsFirstCharCapitalized);
  /dalvik/dx/src/com/android/dx/ssa/
SsaMethod.java 238 int newIndex = blocks.size();
239 SsaBasicBlock newBlock = new SsaBasicBlock(newIndex, maxLabel++, this);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaMethod.java 239 int newIndex = blocks.size();
240 SsaBasicBlock newBlock = new SsaBasicBlock(newIndex, maxLabel++, this);

Completed in 907 milliseconds

1 2 3 4