Searched defs:newIndex (Results 1 - 25 of 57) sorted by relevance

123

/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DPackedSwitchPayloadDecodedInstruction.java59 public DecodedInstruction withIndex(int newIndex) { argument
H A DSparseSwitchPayloadDecodedInstruction.java63 public DecodedInstruction withIndex(int newIndex) { argument
H A DZeroRegisterDecodedInstruction.java39 public DecodedInstruction withIndex(int newIndex) { argument
41 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DFillArrayDataPayloadDecodedInstruction.java97 public DecodedInstruction withIndex(int newIndex) { argument
H A DOneRegisterDecodedInstruction.java50 public DecodedInstruction withIndex(int newIndex) { argument
52 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DRegisterRangeDecodedInstruction.java55 public DecodedInstruction withIndex(int newIndex) { argument
57 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DTwoRegisterDecodedInstruction.java59 public DecodedInstruction withIndex(int newIndex) { argument
61 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DFiveRegisterDecodedInstruction.java86 public DecodedInstruction withIndex(int newIndex) { argument
88 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DFourRegisterDecodedInstruction.java77 public DecodedInstruction withIndex(int newIndex) { argument
79 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DThreeRegisterDecodedInstruction.java68 public DecodedInstruction withIndex(int newIndex) { argument
70 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DDecodedInstruction.java477 public abstract DecodedInstruction withIndex(int newIndex); argument
/external/icu/icu4c/source/common/unicode/
H A Dparsepos.h61 * @param newIndex the new text offset.
64 ParsePosition(int32_t newIndex) argument
66 index(newIndex),
/external/javassist/src/main/javassist/convert/
H A DTransformFieldAccess.java30 private int newIndex; field in class:TransformFieldAccess
47 newIndex = 0;
67 if (newIndex == 0) {
70 newIndex = cp.addFieldrefInfo(
75 iterator.write16bit(newIndex, pos + 1);
H A DTransformCall.java31 protected int newIndex; field in class:TransformCall
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);
/external/javassist/src/main/javassist/expr/
H A DNewExpr.java167 int newIndex = iterator.u16bitAt(pos + 1);
192 jc.recordProceed(new ProceedForNew(newType, newIndex,
221 int newIndex, methodIndex; field in class:NewExpr.ProceedForNew
225 newIndex = ni;
233 bytecode.addIndex(newIndex);
/external/icu/icu4c/source/tools/toolutil/
H A Dtoolutil.cpp335 int32_t newIndex=oldIndex+1; local
336 if(utm_hasCapacity(mem, newIndex)) {
338 mem->idx=newIndex;
348 int32_t newIndex=oldIndex+n; local
349 if(utm_hasCapacity(mem, newIndex)) {
351 mem->idx=newIndex;
/external/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp184 int64_t newIndex = 0; local
196 newIndex = off / pointeeTySize;
208 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/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/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);
/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/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DPick.java356 int newIndex = 0;
361 && newIndex < newValue.length()
365 newIndex = getChar(newValue, newIndex, mergeBuffer, c < LEAST_SKIP);
398 static int getChar(String newValue, int newIndex, StringBuffer mergeBuffer, boolean copy) { argument
399 if (newIndex >= newValue.length()) return newIndex;
400 int cp = UTF16.charAt(newValue,newIndex);
402 return newIndex + UTF16.getCharCount(cp);
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DPick.java355 int newIndex = 0;
360 && newIndex < newValue.length()
364 newIndex = getChar(newValue, newIndex, mergeBuffer, c < LEAST_SKIP);
397 static int getChar(String newValue, int newIndex, StringBuffer mergeBuffer, boolean copy) { argument
398 if (newIndex >= newValue.length()) return newIndex;
399 int cp = UTF16.charAt(newValue,newIndex);
401 return newIndex + UTF16.getCharCount(cp);
/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;

Completed in 4851 milliseconds

123