HomeSort by relevance Sort by last modified time
    Searched full:oldindex (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/proguard/src/proguard/optimize/evaluation/
VariableOptimizer.java 126 for (int oldIndex = 0; oldIndex < variableSize; oldIndex++)
129 variableMap[oldIndex] = oldIndex;
132 if (oldIndex >= parameterSize &&
133 oldIndex < MAX_VARIABLES_SIZE)
136 for (int newIndex = startIndex; newIndex < oldIndex; newIndex++)
138 if (areNonOverlapping(oldIndex, newIndex, codeLength))
140 variableMap[oldIndex] = newIndex
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/ui/
SortedArrayAdapter.java 150 int oldIndex = indexOf(item);
151 if (oldIndex != -1) {
152 T old = mItems.get(oldIndex);
154 mItems.set(oldIndex, item);
155 notifyItemRangeChanged(oldIndex, 1);
158 mItems.remove(oldIndex);
163 if (oldIndex != -1) {
164 notifyItemRangeRemoved(oldIndex, 1);
  /external/proguard/src/proguard/classfile/editor/
ConstantPoolSorter.java 64 for (int oldIndex = 1; oldIndex < constantPoolCount; oldIndex++)
66 Constant constant = programClass.constantPool[oldIndex];
70 new ComparableConstant(programClass, oldIndex, constant);
  /libcore/ojluni/src/main/java/java/text/
MergeCollation.java 257 int oldIndex = -1;
267 oldIndex = patterns.lastIndexOf(newEntry);
274 oldIndex = patterns.lastIndexOf(newEntry);
276 if (oldIndex != -1) {
277 patterns.remove(oldIndex);
312 int oldIndex = -1;
317 oldIndex = patterns.lastIndexOf(entry);
320 oldIndex = patterns.lastIndexOf(entry);
322 if ((oldIndex == -1))
324 + entry, oldIndex);
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
toolutil.cpp 334 int32_t oldIndex=mem->idx;
335 int32_t newIndex=oldIndex+1;
337 p=(char *)mem->array+oldIndex*mem->size;
347 int32_t oldIndex=mem->idx;
348 int32_t newIndex=oldIndex+n;
350 p=(char *)mem->array+oldIndex*mem->size;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ScientificNumberFormatter.java 139 int oldIndex = iterator.getIndex();
145 iterator.setIndex(oldIndex);
272 int oldIndex = iterator.getIndex();
282 iterator.setIndex(oldIndex);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ScientificNumberFormatter.java 143 int oldIndex = iterator.getIndex();
149 iterator.setIndex(oldIndex);
276 int oldIndex = iterator.getIndex();
286 iterator.setIndex(oldIndex);
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 125 int oldIndex = toInsert.index;
126 toInsert.parent.children.remove(oldIndex);
127 toInsert.parent.refreshIndices(oldIndex);
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpecList.java 313 for (int oldIndex = 0; oldIndex < size(); oldIndex++) {
314 if (!exclusionSet.get(oldIndex)) {
315 result.set0(newIndex, get0(oldIndex));
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
RegisterSpecList.java 314 for (int oldIndex = 0; oldIndex < size(); oldIndex++) {
315 if (!exclusionSet.get(oldIndex)) {
316 result.set0(newIndex, get0(oldIndex));
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
LocaleIDParser.java 242 int oldIndex = index; // save original index
260 if (index - oldIndex != 5) { // +1 to account for separator
261 index = oldIndex;
281 int oldIndex = index;
288 if (index - oldIndex != 5) { // +1 to account for separator
289 index = oldIndex;
301 int oldIndex = index;
326 index = oldIndex;
358 int oldIndex = index;
361 int charsSkipped = index - oldIndex;
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/
LocaleIDParser.java 240 int oldIndex = index; // save original index
258 if (index - oldIndex != 5) { // +1 to account for separator
259 index = oldIndex;
279 int oldIndex = index;
286 if (index - oldIndex != 5) { // +1 to account for separator
287 index = oldIndex;
299 int oldIndex = index;
324 index = oldIndex;
356 int oldIndex = index;
359 int charsSkipped = index - oldIndex;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
LocaleIDParser.java 240 int oldIndex = index; // save original index
258 if (index - oldIndex != 5) { // +1 to account for separator
259 index = oldIndex;
279 int oldIndex = index;
286 if (index - oldIndex != 5) { // +1 to account for separator
287 index = oldIndex;
299 int oldIndex = index;
324 index = oldIndex;
356 int oldIndex = index;
359 int charsSkipped = index - oldIndex;
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
DexMerger.java 336 abstract void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex);
381 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
382 indexMap.stringIds[oldIndex] = newIndex;
404 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
408 indexMap.typeIds[oldIndex] = (short) newIndex;
427 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
447 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
451 indexMap.protoIds[oldIndex] = (short) newIndex;
470 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
474 indexMap.fieldIds[oldIndex] = (short) newIndex
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaBasicBlock.java 488 * RuntimeException if {@code oldIndex} was not a successor.
490 * @param oldIndex index of old successor block
493 public void replaceSuccessor(int oldIndex, int newIndex) {
494 if (oldIndex == newIndex) {
501 if (primarySuccessor == oldIndex) {
506 if (successorList.get(i) == oldIndex) {
511 successors.clear(oldIndex);
517 parent.getBlocks().get(oldIndex).predecessors.clear(index);
523 * @param oldIndex index of successor block to remove
525 public void removeSuccessor(int oldIndex) {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaBasicBlock.java 489 * RuntimeException if {@code oldIndex} was not a successor.
491 * @param oldIndex index of old successor block
494 public void replaceSuccessor(int oldIndex, int newIndex) {
495 if (oldIndex == newIndex) {
502 if (primarySuccessor == oldIndex) {
507 if (successorList.get(i) == oldIndex) {
512 successors.clear(oldIndex);
518 parent.getBlocks().get(oldIndex).predecessors.clear(index);
524 * @param oldIndex index of successor block to remove
526 public void removeSuccessor(int oldIndex) {
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
punycode.py 54 oldindex = -1
64 delta += index - oldindex
66 oldindex = index
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
punycode.py 54 oldindex = -1
64 delta += index - oldindex
66 oldindex = index
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
punycode.py 54 oldindex = -1
64 delta += index - oldindex
66 oldindex = index
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
punycode.py 54 oldindex = -1
64 delta += index - oldindex
66 oldindex = index
  /frameworks/base/core/java/android/hardware/hdmi/
IHdmiControlService.aidl 58 void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex);
HdmiTvClient.java 188 * @param oldIndex current volume index
192 public void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex) {
194 mService.setSystemAudioVolume(oldIndex, newIndex, maxIndex);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
InputPointersTests.java 313 final int oldIndex = i + shiftAmount;
314 final int x = oldIndex;
315 final int y = oldIndex * 2;
316 final int pointerId = oldIndex * 3;
317 final int time = oldIndex * 4;
  /external/skia/src/gpu/effects/
GrTextureStripAtlas.cpp 142 int oldIndex = this->searchByKey(oldKey);
143 if (oldIndex < index) {
147 fKeyTable.remove(oldIndex);
  /external/mesa3d/src/mesa/tnl/
t_vertex.c 468 GLuint oldIndex;
471 update_input_ptrs(ctx, oldIndex = elts[start++]);
476 adjust_input_ptrs(ctx, elts[start] - oldIndex);
477 oldIndex = elts[start];

Completed in 1092 milliseconds

1 2 3 4