HomeSort by relevance Sort by last modified time
    Searched refs:newIndex (Results 26 - 50 of 170) sorted by null

12 3 4 5 6 7

  /external/proguard/src/proguard/optimize/peephole/
UnreachableExceptionRemover.java 151 int newIndex = 0;
157 exceptionInfos[newIndex++] = exceptionInfo;
161 return 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/chrome/browser/ui/cocoa/media_picker/
desktop_media_picker_bridge.h 15 - (void)sourceMovedFrom:(int)oldIndex to:(int)newIndex;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScopeStyleSheetCollection.cpp 88 unsigned newIndex = 0;
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/chromium_org/third_party/icu/source/common/unicode/
parsepos.h 61 * @param newIndex the new text offset.
64 ParsePosition(int32_t newIndex)
66 index(newIndex),
  /external/icu/icu4c/source/common/unicode/
parsepos.h 61 * @param newIndex the new text offset.
64 ParsePosition(int32_t newIndex)
66 index(newIndex),
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/
TabModelBase.java 138 int newIndex = indexOf(tab);
148 setIndex(newIndex, TabModel.TabSelectionType.FROM_NEW);
155 public void moveTab(int id, int newIndex) {
156 newIndex = MathUtils.clamp(newIndex, 0, mTabs.size());
160 if (curIndex == INVALID_TAB_INDEX || curIndex == newIndex || curIndex + 1 == newIndex) {
168 if (curIndex < newIndex) --newIndex;
170 mTabs.add(newIndex, tab)
    [all...]
EmptyTabModelObserver.java 37 public void didMoveTab(Tab tab, int newIndex, int curIndex) {
TabModel.java 126 * @param newIndex The new place to put the tab.
128 public void moveTab(int id, int newIndex);
TabModelObserver.java 61 * @param newIndex The new index of the tab in the model.
64 void didMoveTab(Tab tab, int newIndex, int curIndex);
  /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);
  /dalvik/dx/src/com/android/dx/merge/
InstructionTransformer.java 107 private static void jumboCheck(boolean isJumbo, int newIndex) {
108 if (!isJumbo && (newIndex > 0xffff)) {
109 throw new DexIndexOverflowException("Cannot merge new index " + newIndex +
DexMerger.java 344 abstract void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex);
388 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
389 indexMap.stringIds[oldIndex] = newIndex;
411 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
412 if (newIndex < 0 || newIndex > 0xffff) {
413 throw new DexIndexOverflowException("type ID not in [0, 0xffff]: " + newIndex);
415 indexMap.typeIds[oldIndex] = (short) newIndex;
434 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
454 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
    [all...]
  /external/javassist/src/main/javassist/convert/
TransformBefore.java 54 if (newIndex == 0) {
59 newIndex = cp.addMethodrefInfo(ci, nt);
75 iterator.write16bit(newIndex, p + 1);
TransformAfter.java 42 iterator.write16bit(newIndex, pos + 1);
  /dalvik/dx/src/com/android/dx/io/instructions/
FillArrayDataPayloadDecodedInstruction.java 97 public DecodedInstruction withIndex(int newIndex) {
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
FillArrayDataPayloadDecodedInstruction.java 97 public DecodedInstruction withIndex(int newIndex) {
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeComposer.java 780 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++] = localVariableInfo
    [all...]
  /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/icu/icu4c/source/tools/toolutil/
toolutil.cpp 332 int32_t newIndex=oldIndex+1;
333 if(utm_hasCapacity(mem, newIndex)) {
335 mem->idx=newIndex;
345 int32_t newIndex=oldIndex+n;
346 if(utm_hasCapacity(mem, newIndex)) {
348 mem->idx=newIndex;
  /external/proguard/src/proguard/optimize/evaluation/
VariableOptimizer.java 136 for (int newIndex = startIndex; newIndex < oldIndex; newIndex++)
138 if (areNonOverlapping(oldIndex, newIndex, codeLength))
140 variableMap[oldIndex] = newIndex;
142 updateLiveness(oldIndex, newIndex, codeLength);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/app_launcher/
popup.js 120 function changeSelection(newIndex) {
121 if (newIndex >= 0 && newIndex <= appList.length - 1) {
122 selectedIndex = newIndex;
127 if (newIndex == 0) {
129 } else if (newIndex == appList.length - 1) {
  /external/chromium_org/third_party/tlslite/tlslite/utils/
codec.py 14 newIndex = len(self.bytes) - 1
16 self.bytes[newIndex] = x & 0xFF
18 newIndex -= 1
  /external/proguard/src/proguard/evaluation/value/
InstructionOffsetValue.java 184 int newIndex = 0;
191 newValues[newIndex++] = this.values[index];
198 newValues[newIndex++] = other.values[index];

Completed in 907 milliseconds

12 3 4 5 6 7