Searched refs:add (Results 26 - 50 of 109) sorted by relevance

12345

/dalvik/dx/src/com/android/multidex/
H A DMainDexListBuilder.java118 filesToKeep.add(className + CLASS_EXTENSION);
168 filesToKeep.add(name);
173 filesToKeep.add(name);
180 filesToKeep.add(name);
H A DFolderPathElement.java58 result.add(prefix + SEPARATOR_CHAR + file.getName());
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DOutputFinisher.java98 * Helper for {@link #add} which scrutinizes a single
157 * @param result {@code non-null;} result set to add to
164 result.add(cst);
181 * @param result {@code non-null;} result set to add to
182 * @param spec {@code null-ok;} register spec to add
196 result.add(CstType.intern(type));
200 result.add(name);
204 result.add(signature);
211 * @param insn {@code non-null;} the instruction to add
213 public void add(DalvIns method in class:OutputFinisher
[all...]
/dalvik/dx/src/com/android/dx/ssa/
H A DDominators.java122 worklist.add(in);
132 if (visited.add(vAncestor) && vabbInfo.ancestor != null) {
133 worklist.add(vAncestor);
175 vertex.add(root);
213 info[vertex.get(wInfo.semidom).getIndex()].bucket.add(w);
263 vertex.add(v);
H A DEscapeAnalysis.java173 childSet.parentSets.add(parentSet);
176 parentSet.childSets.add(childSet);
191 e.childSets.add(newNode);
192 newNode.parentSets.add(e);
196 e.parentSets.add(newNode);
197 newNode.childSets.add(e);
232 latticeValues.add(escSet);
238 latticeValues.add(escSet);
313 latticeValues.add(escSet);
325 regWorklist.add(resul
[all...]
H A DBasicRegisterMapper.java118 oldToNew.add(-1);
/dalvik/dx/src/com/android/dx/dex/code/
H A DOutputFinisher.java120 * Helper for {@link #add} which scrutinizes a single
179 * @param result {@code non-null;} result set to add to
186 result.add(cst);
190 result.add(m.getConstant(i));
208 * @param result {@code non-null;} result set to add to
209 * @param spec {@code null-ok;} register spec to add
223 result.add(CstType.intern(type));
227 result.add(CstType.intern(Type.OBJECT));
231 result.add(name);
235 result.add(signatur
244 public void add(DalvInsn insn) { method in class:OutputFinisher
[all...]
/dalvik/dx/src/com/android/dx/ssa/back/
H A DRegisterAllocator.java167 insns.add(insnIndex, toAdd);
180 interference.add(newReg, liveOutIter.next());
188 interference.add(newReg, sources.get(i).getReg());
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DParameterAnnotationStruct.java73 arrayList.add(new AnnotationSetRefItem(item));
105 wordData.add(annotationsItem);
H A DStringIdItem.java90 // The string data hasn't yet been added, so add it.
93 stringData.add(data);
H A DDebugInfoDecoder.java256 locals.add(thisEntry);
278 locals.add(le);
300 locals.add(le);
313 locals.add(le);
339 locals.add(le);
365 locals.add(le);
406 positions.add(new PositionEntry(address, line));
H A DClassDefsSection.java105 * Adds an element to this instance. It is illegal to attempt to add more
108 * @param clazz {@code non-null;} the class def to add
110 public void add(ClassDefItem clazz) { method in class:ClassDefsSection
184 orderedDefs.add(c);
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DRopMethod.java158 * For each block, find its successors, and add the block's label to
168 exitPredecessors.add(label);
177 succPreds.add(label);
/dalvik/dexgen/src/com/android/dexgen/util/
H A DBitIntSet.java39 public void add(int value) { method in class:BitIntSet
89 add(iter.next());
/dalvik/dx/junit-tests/com/android/dx/merge/
H A DDexMergerTest.java50 outputDexes.add(getDexForClass(NoFieldsClassA.class));
51 outputDexes.add(getDexForClass(NoFieldsClassB.class));
/dalvik/dx/src/com/android/dx/dex/file/
H A DParameterAnnotationStruct.java74 arrayList.add(new AnnotationSetRefItem(item));
106 wordData.add(annotationsItem);
H A DCallSiteIdItem.java67 byteData.add(callSiteItem);
H A DStringIdItem.java88 // The string data hasn't yet been added, so add it.
91 stringData.add(data);
H A DDebugInfoDecoder.java266 locals.add(thisEntry);
288 locals.add(le);
304 locals.add(le);
317 locals.add(le);
343 locals.add(le);
369 locals.add(le);
410 positions.add(new PositionEntry(address, line));
/dalvik/dx/src/com/android/dx/rop/code/
H A DRopMethod.java157 * For each block, find its successors, and add the block's label to
167 exitPredecessors.add(label);
176 succPreds.add(label);
/dalvik/dx/src/com/android/dx/util/
H A DBitIntSet.java39 public void add(int value) { method in class:BitIntSet
89 add(iter.next());
/dalvik/dx/src/com/android/dx/cf/code/
H A DLocalsArraySet.java94 secondaries.add(null);
96 secondaries.add(la.copy());
291 newSecondaries.add(resultla);
332 newSecondaries.add(resultla);
432 newSecondaries.add(la);
H A DByteCatchList.java188 result.add(get(i).getHandlerPc());
192 result.add(noException);
/dalvik/dx/src/com/android/dx/dex/cf/
H A DAttributeTranslator.java312 membersList.add(innerClass.getClassType());
325 result.add(AnnotationUtils.makeInnerClass(
348 result.add(AnnotationUtils.makeEnclosingClass(
359 result.add(AnnotationUtils.makeMemberClasses(typeList));
431 result.add(pair);
/dalvik/dexgen/src/com/android/dexgen/rop/
H A DByteCatchList.java188 result.add(get(i).getHandlerPc());
192 result.add(noException);

Completed in 1613 milliseconds

12345