Searched refs:remove (Results 1 - 25 of 48) sorted by relevance

12

/dalvik/dx/tests/118-find-usages/
H A DFoo.java41 new ArrayList<String>().remove(5);
45 new ArrayList<String>().remove("5");
55 @Override public boolean remove(Object o) { method in class:Foo.MyList
H A Drun23 echo "ArrayList.remove()"
24 dx --find-usages foo.dex "Ljava/util/ArrayList;" remove
26 echo "Collection.remove()"
27 dx --find-usages foo.dex "Ljava/util/Collection;" remove
/dalvik/dexgen/src/com/android/dexgen/util/
H A DIntSet.java34 * @param value int to remove
36 void remove(int value); method in interface:IntSet
H A DListIntSet.java47 public void remove(int value) { method in class:ListIntSet
H A DBitIntSet.java59 public void remove(int value) { method in class:BitIntSet
/dalvik/dx/src/com/android/dx/util/
H A DIntSet.java34 * @param value int to remove
36 void remove(int value); method in interface:IntSet
H A DListIntSet.java47 public void remove(int value) { method in class:ListIntSet
H A DBitIntSet.java59 public void remove(int value) { method in class:BitIntSet
/dalvik/vm/test/
H A DTestIndirectRefTable.cpp81 if (irt.remove(cookie, iref0)) {
87 * Add three, check, remove in the order in which they were added.
109 if (!irt.remove(cookie, iref0) ||
110 !irt.remove(cookie, iref1) ||
111 !irt.remove(cookie, iref2))
130 * Add three, remove in the opposite order.
141 if (!irt.remove(cookie, iref2) ||
142 !irt.remove(cookie, iref1) ||
143 !irt.remove(cookie, iref0))
156 * Add three, remove middl
[all...]
/dalvik/tests/062-character-encodings/src/
H A DMain.java21 needed.remove(canonicalName);
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DLocalVariableExtractor.java136 primaryState.remove(primaryState.get(result.getReg()));
152 * to another, remove the association between the old register
161 primaryState.remove(previous);
/dalvik/dx/src/com/android/dx/rop/code/
H A DLocalVariableExtractor.java136 primaryState.remove(primaryState.get(result.getReg()));
152 * to another, remove the association between the old register
161 primaryState.remove(previous);
/dalvik/dx/src/com/android/dx/command/annotool/
H A DMain.java129 set.remove(ElementType.TYPE);
130 set.remove(ElementType.PACKAGE);
/dalvik/dx/src/com/android/dx/ssa/
H A DDeadCodeRemover.java108 useList[source.getReg()].remove(insnS);
154 useList[source.getReg()].remove(insn);
H A DLocalVariableExtractor.java32 * TODO remove this. Allow Rop-form LocalVariableInfo to be passed in,
153 primaryState.remove(primaryState.get(result.getReg()));
169 * to another, remove the association between the old register
178 primaryState.remove(previous);
H A DOptimizer.java143 newSteps.remove(OptionalStep.CONST_COLLECTOR);
174 steps.remove(OptionalStep.ESCAPE_ANALYSIS);
H A DDominators.java136 worklist.remove(wsize - 1);
228 SsaBasicBlock last = wParentBucket.remove(lastItem);
H A DSsaMethod.java212 blocks.remove(exitBlockIndex);
375 SsaBasicBlock block = blockList.remove(0);
500 useList[reg].remove(insn);
552 if (!useList[oldSources.get(i).getReg()].remove(insn)) {
573 * @param insn {@code non-null;} insn to remove
832 insns.remove(i);
H A DSCCP.java553 SsaBasicBlock block = cfgWorklist.remove(listSize);
559 SsaBasicBlock block = cfgPhiWorklist.remove(listSize);
565 SsaInsn insn = varyingWorklist.remove(listSize);
579 SsaInsn insn = ssaWorklist.remove(listSize);
/dalvik/tests/079-phantom/src/
H A DBitmap.java137 PhantomWrapper ref = (PhantomWrapper) mQueue.remove();
/dalvik/dx/src/com/android/dx/dex/cf/
H A DOptimizerOptions.java138 steps.remove(Optimizer.OptionalStep.CONST_COLLECTOR);
/dalvik/vm/
H A DIndirectRefTable.h184 * TODO: may want completely different add/remove algorithms for global
292 * specified by the cookie, we don't remove anything. This is the behavior
297 bool remove(u4 cookie, IndirectRef iref);
325 * TODO: we should name the table in a constructor and remove
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DLocalList.java624 * the end-then-start, just remove the old end.
646 * The code above didn't find and remove an unnecessary
740 * method will remove the start (as the local was never actually
779 regs.remove(endedLocal);
859 regs.remove(spec);
892 regs.remove(spec); // TODO: Is this line superfluous?
/dalvik/dx/src/com/android/dx/dex/code/
H A DLocalList.java624 * the end-then-start, just remove the old end.
646 * The code above didn't find and remove an unnecessary
740 * method will remove the start (as the local was never actually
779 regs.remove(endedLocal);
859 regs.remove(spec);
892 regs.remove(spec); // TODO: Is this line superfluous?
/dalvik/dx/junit-tests/com/android/dx/util/
H A DListIntSetTest.java95 set.remove(0);

Completed in 791 milliseconds

12