Searched refs:newIndex (Results 26 - 50 of 101) sorted by relevance

12345

/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfolder_shortcuts_data_model.js419 var newIndex = 0; // Index of newArray. variable
424 if (newIndex >= newArray.length) {
430 while (newIndex < newArray.length) {
433 if (util.isSameEntry(oldArray[oldIndex], newArray[newIndex])) {
434 permutation[oldIndex] = newIndex;
435 newIndex++;
440 if (this.compare(oldArray[oldIndex], newArray[newIndex]) < 0) {
446 // newArray[newIndex] is added, which is not in the old array.
447 newIndex++;
/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/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/chromium_org/third_party/tlslite/tlslite/utils/
H A Dcodec.py14 newIndex = len(self.bytes) - 1
16 self.bytes[newIndex] = x & 0xFF
18 newIndex -= 1
/external/javassist/src/main/javassist/convert/
H A DTransformBefore.java54 if (newIndex == 0) {
59 newIndex = cp.addMethodrefInfo(ci, nt);
75 iterator.write16bit(newIndex, p + 1);
H A DTransformAfter.java42 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 DTabModel.java126 * @param newIndex The new place to put the tab.
128 public void moveTab(int id, int newIndex); 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 DTabModelBase.java151 int newIndex = indexOf(tab);
161 setIndex(newIndex, TabModel.TabSelectionType.FROM_NEW);
168 public void moveTab(int id, int newIndex) { argument
169 newIndex = MathUtils.clamp(newIndex, 0, mTabs.size());
173 if (curIndex == INVALID_TAB_INDEX || curIndex == newIndex || curIndex + 1 == newIndex) {
181 if (curIndex < newIndex) --newIndex;
183 mTabs.add(newIndex, ta
[all...]
H A DEmptyTabModel.java85 public void moveTab(int id, int newIndex) {} argument
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DFillArrayDataPayloadDecodedInstruction.java97 public DecodedInstruction withIndex(int newIndex) { argument
/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeComposer.java780 int newIndex = 0;
786 exceptionInfos[newIndex++] = exceptionInfo;
791 Arrays.fill(exceptionInfos, newIndex, exceptionInfoCount, null);
793 return newIndex;
806 int newIndex = 0;
814 lineNumberInfos[newIndex++] = lineNumberInfo;
819 Arrays.fill(lineNumberInfos, newIndex, lineNumberInfoCount, null);
821 return newIndex;
834 int newIndex = 0;
841 localVariableInfos[newIndex
[all...]
/external/chromium-trace/trace-viewer/src/tcmalloc/
H A Dheap_instance_track.js193 var newIndex = index + offset;
194 if (newIndex >= 0 && newIndex < objectSnapshots.length) {
195 selection.addObjectSnapshot(this, objectSnapshots[newIndex]);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DExpandedNameTable.java262 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/icu/source/tools/toolutil/
H A Dtoolutil.cpp331 int32_t newIndex=oldIndex+1; local
332 if(utm_hasCapacity(mem, newIndex)) {
334 mem->idx=newIndex;
344 int32_t newIndex=oldIndex+n; local
345 if(utm_hasCapacity(mem, newIndex)) {
347 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;
/external/proguard/src/proguard/optimize/evaluation/
H A DVariableOptimizer.java136 for (int newIndex = startIndex; newIndex < oldIndex; newIndex++)
138 if (areNonOverlapping(oldIndex, newIndex, codeLength))
140 variableMap[oldIndex] = newIndex;
142 updateLiveness(oldIndex, newIndex, codeLength);
/external/proguard/src/proguard/evaluation/value/
H A DInstructionOffsetValue.java184 int newIndex = 0;
191 newValues[newIndex++] = this.values[index];
198 newValues[newIndex++] = other.values[index];
/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/chrome/browser/resources/options/
H A Dbrowser_options_startup_page_list.js245 var newIndex = this.dataModel.indexOf(dropTarget.pageInfo_);
247 newIndex += 1;
252 [newIndex, this.selectionModel.selectedIndexes]);
260 chrome.send('addStartupPage', [url, newIndex]);
H A Dlanguage_list.js302 var newIndex = this.dataModel.indexOf(dropTarget.languageCode);
304 newIndex += 1;
305 this.dataModel.splice(newIndex, 0, languageCode);
307 this.selectionModel.selectedIndex = newIndex;
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprthread.h203 PRUintn *newIndex, PRThreadPrivateDTOR destructor);
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dslice_track.js246 var newIndex = index + offset;
247 if (newIndex < 0 || newIndex >= this.slices_.length)
250 var hit = selection.addSlice(this, this.slices_[newIndex]);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DInspectorView.js383 var newIndex = this._historyIterator + move;
384 if (newIndex >= this._history.length || newIndex < 0)
388 this._historyIterator = newIndex;

Completed in 867 milliseconds

12345