Searched defs:newIndex (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfolder_shortcuts_data_model.js422 var newIndex = 0; // Index of newArray. variable
427 if (newIndex >= newArray.length) {
433 while (newIndex < newArray.length) {
436 if (util.isSameEntry(oldArray[oldIndex], newArray[newIndex])) {
437 permutation[oldIndex] = newIndex;
438 newIndex++;
443 if (this.compare(oldArray[oldIndex], newArray[newIndex]) < 0) {
449 // newArray[newIndex] is added, which is not in the old array.
450 newIndex++;
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dparsepos.h61 * @param newIndex the new text offset.
64 ParsePosition(int32_t newIndex) argument
66 index(newIndex),
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DPackedSwitchPayloadDecodedInstruction.java59 public DecodedInstruction withIndex(int newIndex) { argument
H A DSparseSwitchPayloadDecodedInstruction.java63 public DecodedInstruction withIndex(int newIndex) { argument
H A DZeroRegisterDecodedInstruction.java39 public DecodedInstruction withIndex(int newIndex) { argument
41 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DFillArrayDataPayloadDecodedInstruction.java97 public DecodedInstruction withIndex(int newIndex) { argument
H A DOneRegisterDecodedInstruction.java50 public DecodedInstruction withIndex(int newIndex) { argument
52 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DRegisterRangeDecodedInstruction.java55 public DecodedInstruction withIndex(int newIndex) { argument
57 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DTwoRegisterDecodedInstruction.java59 public DecodedInstruction withIndex(int newIndex) { argument
61 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DFiveRegisterDecodedInstruction.java86 public DecodedInstruction withIndex(int newIndex) { argument
88 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DFourRegisterDecodedInstruction.java77 public DecodedInstruction withIndex(int newIndex) { argument
79 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DThreeRegisterDecodedInstruction.java68 public DecodedInstruction withIndex(int newIndex) { argument
70 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DDecodedInstruction.java477 public abstract DecodedInstruction withIndex(int newIndex); argument
/external/icu/icu4c/source/common/unicode/
H A Dparsepos.h61 * @param newIndex the new text offset.
64 ParsePosition(int32_t newIndex) argument
66 index(newIndex),
/external/javassist/src/main/javassist/convert/
H A DTransformFieldAccess.java30 private int newIndex; field in class:TransformFieldAccess
47 newIndex = 0;
67 if (newIndex == 0) {
70 newIndex = cp.addFieldrefInfo(
75 iterator.write16bit(newIndex, pos + 1);
H A DTransformCall.java31 protected int newIndex; field in class:TransformCall
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/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/
H A DEmptyTabModelObserver.java37 public void didMoveTab(Tab tab, int newIndex, int curIndex) { argument
H A DTabModelObserver.java61 * @param newIndex The new index of the tab in the model.
64 void didMoveTab(Tab tab, int newIndex, int curIndex); argument
H A DEmptyTabModel.java86 public void moveTab(int id, int newIndex) {} argument
H A DTabModel.java126 * @param newIndex The new place to put the tab.
128 public void moveTab(int id, int newIndex); argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTreeScopeStyleSheetCollection.cpp88 unsigned newIndex = 0; local
90 while (oldStyleSheets[oldIndex] != newStylesheets[newIndex]) {
91 addedSheets.append(newStylesheets[newIndex]->contents());
92 if (++newIndex == newStyleSheetCount)
95 if (++newIndex == newStyleSheetCount)
99 while (newIndex < newStyleSheetCount) {
100 addedSheets.append(newStylesheets[newIndex]->contents());
101 ++newIndex;
/external/javassist/src/main/javassist/expr/
H A DNewExpr.java167 int newIndex = iterator.u16bitAt(pos + 1);
192 jc.recordProceed(new ProceedForNew(newType, newIndex,
221 int newIndex, methodIndex; field in class:NewExpr.ProceedForNew
225 newIndex = ni;
233 bytecode.addIndex(newIndex);
/external/srec/tools/grxmlcompile/
H A Dgr_iface.cpp37 int *newIndex= new int [numSubGraph+BLKSIZE]; local
40 newIndex[ii]= subIndex[ii];
45 subIndex= newIndex;
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dtoolutil.cpp305 int32_t newIndex=oldIndex+1; local
306 if(utm_hasCapacity(mem, newIndex)) {
308 mem->idx=newIndex;
318 int32_t newIndex=oldIndex+n; local
319 if(utm_hasCapacity(mem, newIndex)) {
321 mem->idx=newIndex;
/external/icu/icu4c/source/tools/toolutil/
H A Dtoolutil.cpp332 int32_t newIndex=oldIndex+1; local
333 if(utm_hasCapacity(mem, newIndex)) {
335 mem->idx=newIndex;
345 int32_t newIndex=oldIndex+n; local
346 if(utm_hasCapacity(mem, newIndex)) {
348 mem->idx=newIndex;

Completed in 516 milliseconds

123