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

1 2 3 4 5

  /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/dexmaker/src/dx/java/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;
  /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);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
PointerTrackerQueue.java 72 int newIndex = 0;
76 if (newIndex != index) {
81 if (newIndex != index) {
83 expandableArray.set(newIndex, element);
85 newIndex++;
87 mArraySize = newIndex;
104 int newIndex, index;
105 for (newIndex = index = 0; index < arraySize; index++) {
114 if (newIndex != index) {
116 expandableArray.set(newIndex, element)
    [all...]
  /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);

Completed in 349 milliseconds

1 2 3 4 5