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

1 2 3 4 5 6 7

  /external/proguard/src/proguard/obfuscate/
ParameterNameMarker.java 64 int newIndex = 0;
73 localVariableTableAttribute.localVariableTable[newIndex++] =
79 localVariableTableAttribute.u2localVariableTableLength = newIndex;
82 if (newIndex > 0)
96 int newIndex = 0;
105 localVariableTypeTableAttribute.localVariableTypeTable[newIndex++] =
111 localVariableTypeTableAttribute.u2localVariableTypeTableLength = newIndex;
114 if (newIndex > 0)
  /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/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 70 int newIndex = 0;
74 if (newIndex != index) {
79 if (newIndex != index) {
81 expandableArray.set(newIndex, element);
83 newIndex++;
85 mArraySize = newIndex;
102 int newIndex, index;
103 for (newIndex = index = 0; index < arraySize; index++) {
112 if (newIndex != index) {
114 expandableArray.set(newIndex, element)
    [all...]
  /external/chromium_org/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/chromium_org/third_party/WebKit/Source/core/dom/
TreeScopeStyleSheetCollection.cpp 78 unsigned newIndex = 0;
80 while (oldStyleSheets[oldIndex] != newStylesheets[newIndex]) {
81 addedSheets.append(newStylesheets[newIndex]->contents());
82 if (++newIndex == newStyleSheetCount)
85 if (++newIndex == newStyleSheetCount)
89 while (newIndex < newStyleSheetCount) {
90 addedSheets.append(newStylesheets[newIndex]->contents());
91 ++newIndex;
  /external/proguard/src/proguard/classfile/editor/
VariableCleaner.java 138 int newIndex = 0;
148 localVariableInfos[newIndex++] = localVariableInfos[index];
153 Arrays.fill(localVariableInfos, newIndex, localVariableInfoCount, null);
155 return newIndex;
169 int newIndex = 0;
179 localVariableTypeInfos[newIndex++] = localVariableTypeInfos[index];
184 Arrays.fill(localVariableTypeInfos, newIndex, localVariableTypeInfoCount, null);
186 return newIndex;

Completed in 425 milliseconds

1 2 3 4 5 6 7