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

1 2 3

  /dalvik/dx/src/com/android/dx/io/instructions/
ZeroRegisterDecodedInstruction.java 39 public DecodedInstruction withIndex(int newIndex) {
41 getFormat(), getOpcode(), newIndex, getIndexType(),
OneRegisterDecodedInstruction.java 50 public DecodedInstruction withIndex(int newIndex) {
52 getFormat(), getOpcode(), newIndex, getIndexType(),
RegisterRangeDecodedInstruction.java 55 public DecodedInstruction withIndex(int newIndex) {
57 getFormat(), getOpcode(), newIndex, getIndexType(),
TwoRegisterDecodedInstruction.java 59 public DecodedInstruction withIndex(int newIndex) {
61 getFormat(), getOpcode(), newIndex, getIndexType(),
PackedSwitchPayloadDecodedInstruction.java 59 public DecodedInstruction withIndex(int newIndex) {
FiveRegisterDecodedInstruction.java 86 public DecodedInstruction withIndex(int newIndex) {
88 getFormat(), getOpcode(), newIndex, getIndexType(),
FourRegisterDecodedInstruction.java 77 public DecodedInstruction withIndex(int newIndex) {
79 getFormat(), getOpcode(), newIndex, getIndexType(),
ThreeRegisterDecodedInstruction.java 68 public DecodedInstruction withIndex(int newIndex) {
70 getFormat(), getOpcode(), newIndex, getIndexType(),
SparseSwitchPayloadDecodedInstruction.java 63 public DecodedInstruction withIndex(int 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;
VariableRemapper.java 163 int newIndex = 0;
169 localVariableInfos[newIndex++] = localVariableInfo;
173 return newIndex;
185 int newIndex = 0;
191 localVariableTypeInfos[newIndex++] = localVariableTypeInfo;
195 return newIndex;
ConstantPoolSorter.java 79 int newIndex = 1;
89 newIndex = newLength;
108 constantIndexMap[comparableConstant.getIndex()] = 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);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/
ActionListModel.java 41 int newIndex = actionList.size() - 1;
42 this.fireIntervalAdded(this, newIndex, newIndex);
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_name_folder_controller.h 44 // new folder |parent| and |newIndex| specify where to put the new
52 newIndex:(int)newIndex;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebPopupMenu.h 49 void didChangeSelectedIndex(int newIndex);
50 void setTextForIndex(int newIndex);
  /frameworks/base/core/java/android/webkit/
WebBackForwardList.java 179 * @param newIndex The new history index.
181 /*package*/ synchronized void setCurrentIndex(int newIndex) {
182 mCurrentIndex = newIndex;
184 mCallbackProxy.onIndexChanged(getItemAtIndex(newIndex), newIndex);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WordComposer.java 118 final int newIndex = size();
122 if (newIndex < BinaryDictionary.MAX_WORD_LENGTH) {
123 mXCoordinates[newIndex] = x;
124 mYCoordinates[newIndex] = y;
127 newIndex, primaryCode, mIsFirstCharCapitalized);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
QtFallbackWebPopup.cpp 194 int newIndex;
195 for (newIndex = 0; newIndex < options->Count() && !options->At(newIndex).IsSelected(); newIndex++) {}
196 if (newIndex == options->Count())
197 newIndex = currentIndex();
202 if (currentIndex() != newIndex && newIndex >= 0)
203 valueChanged(newIndex);
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
VariableOptimizer.java 128 for (int newIndex = startIndex; newIndex < oldIndex; newIndex++)
130 if (areNonOverlapping(oldIndex, newIndex, codeLength))
132 variableMap[oldIndex] = newIndex;
134 updateLiveness(oldIndex, newIndex, codeLength);
  /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;
  /external/icu4c/common/unicode/
parsepos.h 61 * @param newIndex the new text offset.
64 ParsePosition(int32_t newIndex)
66 index(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);

Completed in 1372 milliseconds

1 2 3