Searched refs:newIndex (Results 51 - 75 of 101) sorted by relevance

12345

/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegisterSpecList.java313 int newIndex = 0;
316 result.set0(newIndex, get0(oldIndex));
317 newIndex++;
/external/lzma/CS/7zip/Common/
H A DCommandLineParser.cs229 int newIndex = commandString.IndexOf(c);
230 if (newIndex >= 0)
234 if (commandString.IndexOf(c, newIndex + 1) >= 0)
/external/sonivox/arm-wt-22k/misc/
H A Deas_host.c515 EAS_I32 newIndex; local
526 newIndex = position - file->filePos + file->readIndex;
527 if ((newIndex >= 0) && (newIndex < file->bytesInBuffer))
529 file->readIndex = newIndex;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTable.java333 int newIndex = index;
335 newIndex = 0;
337 newIndex = m_properties.size() - 1;
339 newIndex = Math.max(index - m_page + 1, 0);
341 newIndex = Math.min(index + m_page - 1, m_properties.size() - 1);
343 newIndex = Math.max(index - 1, 0);
345 newIndex = Math.min(index + 1, m_properties.size() - 1);
348 if (newIndex != index && newIndex < m_properties.size()) {
349 setActivePropertyInfo(m_properties.get(newIndex));
[all...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DSsaBasicBlock.java492 * @param newIndex index of new successor block
494 public void replaceSuccessor(int oldIndex, int newIndex) { argument
495 if (oldIndex == newIndex) {
500 successors.set(newIndex);
503 primarySuccessor = newIndex;
508 successorList.set(i, newIndex);
515 parent.getBlocks().get(newIndex).predecessors.set(index);
H A DSsaMethod.java239 int newIndex = blocks.size();
240 SsaBasicBlock newBlock = new SsaBasicBlock(newIndex, maxLabel++, this);
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_bar_controller.h380 newParent:(const BookmarkNode*)newParent newIndex:(int)newIndex;
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DBookmarksBridge.java66 * @param newIndex The index of the node in the new parent.
69 BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex) {
514 BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex) {
518 observer.bookmarkNodeMoved(oldParent, oldIndex, newParent, newIndex);
68 bookmarkNodeMoved( BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex) argument
513 bookmarkNodeMoved( BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex) argument
/external/chromium_org/third_party/icu/source/i18n/
H A Dchoicfmt.cpp519 int32_t newIndex = start + len; local
520 if (newIndex > furthest) {
521 furthest = newIndex;
/external/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp195 int64_t newIndex = 0; local
207 newIndex = off / pointeeTySize;
219 return MakeElementRegion(newSuperR, PointeeTy, newIndex);
/external/icu/icu4c/source/i18n/
H A Dchoicfmt.cpp519 int32_t newIndex = start + len; local
520 if (newIndex > furthest) {
521 furthest = newIndex;
/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeEditor.java1061 int newIndex = 0;
1067 exceptionInfos[newIndex++] = exceptionInfo;
1071 return newIndex;
1084 int newIndex = 0;
1092 lineNumberInfos[newIndex++] = lineNumberInfo;
1096 return newIndex;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DDOMPatchSupport.cpp237 size_t newIndex = newList.size() - i - 1; local
239 oldMap[oldIndex].second = newIndex;
240 newMap[newIndex].first = newList[newIndex].get();
241 newMap[newIndex].second = oldIndex;
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
H A DEASLib.c1093 EAS_I32 newIndex; local
1108 newIndex = position - file->filePos + file->readIndex;
1109 if ((newIndex >= 0) && (newIndex < file->bytesInBuffer))
1111 file->readIndex = newIndex;
H A DEASLibVst.c788 EAS_I32 newIndex; local
803 newIndex = position - file->filePos + file->readIndex;
804 if ((newIndex >= 0) && (newIndex < file->bytesInBuffer))
806 file->readIndex = newIndex;
/external/llvm/include/llvm/CodeGen/
H A DSlotIndexes.h604 SlotIndex newIndex(&*newItr, SlotIndex::Slot_Block);
605 mi2iMap.insert(std::make_pair(mi, newIndex));
606 return newIndex;
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dlist.js636 var newIndex = e.permutation[index];
637 newCachedItems[newIndex] = this.cachedItems_[index];
638 newCachedItems[newIndex].listIndex = newIndex;
/external/chromium_org/chrome/browser/resources/bookmark_manager/js/
H A Dmain.js711 var newIndex = dataModel.findIndexById(node.id);
712 if (newIndex != -1) {
714 list.scrollIndexIntoView(newIndex);
715 sm.leadIndex = sm.anchorIndex = sm.selectedIndex = newIndex;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/screencast/
H A DScreencastView.js728 var newIndex = this._historyIndex + offset;
729 if (newIndex < 0 || newIndex >= this._historyEntries.length)
731 PageAgent.navigateToHistoryEntry(this._historyEntries[newIndex].id);
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DDecodedInstruction.java477 public abstract DecodedInstruction withIndex(int newIndex); argument
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprogram.c669 * replacing them with (newFile, newIndex).
674 GLuint newFile, GLuint newIndex)
683 inst[i].SrcReg[j].Index = newIndex;
689 inst[i].DstReg.Index = newIndex;
672 replace_registers(struct prog_instruction *inst, GLuint numInst, GLuint oldFile, GLuint oldIndex, GLuint newFile, GLuint newIndex) argument
/external/mesa3d/src/mesa/program/
H A Dprogram.c669 * replacing them with (newFile, newIndex).
674 GLuint newFile, GLuint newIndex)
683 inst[i].SrcReg[j].Index = newIndex;
689 inst[i].DstReg.Index = newIndex;
672 replace_registers(struct prog_instruction *inst, GLuint numInst, GLuint oldFile, GLuint oldIndex, GLuint newFile, GLuint newIndex) argument
/external/clang/lib/Lex/
H A DPPMacroExpansion.cpp784 size_t newIndex = MacroExpandedTokens.size();
800 MacroExpandingLexersStack.push_back(std::make_pair(tokLexer, newIndex));
801 return MacroExpandedTokens.data() + newIndex;
/external/fonttools/Lib/fontTools/misc/
H A DpsCharStrings.py339 newIndex = index + nBytes
340 bytes = self.bytecode[index:newIndex]
341 index = newIndex
/external/fonttools/Tools/fontTools/misc/
H A DpsCharStrings.py339 newIndex = index + nBytes
340 bytes = self.bytecode[index:newIndex]
341 index = newIndex

Completed in 722 milliseconds

12345