Searched defs:add (Results 1 - 25 of 33) sorted by relevance

12

/dalvik/dexgen/src/com/android/dexgen/util/
H A DDexJarMaker.java55 add(new File(pathHolder.getDexFilePath()), target);
74 * @param source {@code non-null;} dex file to add
78 private void add(File source, JarOutputStream target) throws IOException { method in class:DexJarMaker
H A DIntSet.java27 * @param value int to add
29 void add(int value); method in interface:IntSet
H A DListIntSet.java38 public void add(int value) { method in class:ListIntSet
72 add(o.ints.get(j++));
83 add(o.ints.get(j++));
91 ints.add(i);
97 add(iter.next());
H A DBitIntSet.java39 public void add(int value) { method in class:BitIntSet
89 add(iter.next());
H A DIntList.java49 result.add(value);
64 result.add(value0);
65 result.add(value1);
212 * @param value the value to add
214 public void add(int value) { method in class:IntList
348 result.add(values[i]);
/dalvik/dx/src/com/android/dx/util/
H A DIntSet.java27 * @param value int to add
29 void add(int value); method in interface:IntSet
H A DListIntSet.java38 public void add(int value) { method in class:ListIntSet
72 add(o.ints.get(j++));
83 add(o.ints.get(j++));
91 ints.add(i);
97 add(iter.next());
H A DBitIntSet.java39 public void add(int value) { method in class:BitIntSet
89 add(iter.next());
H A DIntList.java49 result.add(value);
64 result.add(value0);
65 result.add(value1);
212 * @param value the value to add
214 public void add(int value) { method in class:IntList
348 result.add(values[i]);
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DOutputCollector.java59 * @param insn {@code non-null;} the instruction to add
61 public void add(DalvInsn insn) { method in class:OutputCollector
62 finisher.add(insn);
82 * @param insn {@code non-null;} the instruction to add
85 suffix.add(insn);
113 finisher.add(suffix.get(i));
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/dexgen/src/com/android/dexgen/dex/file/
H A DStatistics.java42 * @param item {@code non-null;} the item to add
44 public void add(Item item) { method in class:Statistics
51 data.add(item);
58 * @param list {@code non-null;} the list of items to add
63 add(item);
148 public void add(Item item) { method in class:Statistics.Data
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);
H A DMixedItemSection.java163 * that it has been added to this instance. It is invalid to add the
164 * same item to more than one instance, nor to add the same items
167 * @param item {@code non-null;} the item to add
169 public void add(OffsettedItem item) { method in class:MixedItemSection
182 items.add(item);
187 * (which may not be the one passed in). This will add the item if no
202 add(item);
/dalvik/dx/src/com/android/dx/dex/code/
H A DOutputCollector.java62 * @param insn {@code non-null;} the instruction to add
64 public void add(DalvInsn insn) { method in class:OutputCollector
65 finisher.add(insn);
85 * @param insn {@code non-null;} the instruction to add
88 suffix.add(insn);
116 finisher.add(suffix.get(i));
/dalvik/dx/src/com/android/dx/dex/file/
H A DStatistics.java42 * @param item {@code non-null;} the item to add
44 public void add(Item item) { method in class:Statistics
51 data.add(item);
58 * @param list {@code non-null;} the list of items to add
63 add(item);
148 public void add(Item item) { method in class:Statistics.Data
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);
H A DMixedItemSection.java163 * that it has been added to this instance. It is invalid to add the
164 * same item to more than one instance, nor to add the same items
167 * @param item {@code non-null;} the item to add
169 public void add(OffsettedItem item) { method in class:MixedItemSection
182 items.add(item);
187 * (which may not be the one passed in). This will add the item if no
202 add(item);
/dalvik/dx/src/com/android/dx/ssa/back/
H A DInterferenceGraph.java53 interference.add(SetFactory.makeInterferenceSet(countRegs));
64 public void add(int regV, int regW) { method in class:InterferenceGraph
67 interference.get(regV).add(regW);
68 interference.get(regW).add(regV);
110 interference.add(SetFactory.makeInterferenceSet(size));
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DAnnotation.java205 * @param pair {@code non-null;} the (name, value) pair to add to this instance
207 public void add(NameValuePair pair) { method in class:Annotation
H A DAnnotations.java77 result.add(annotation);
165 * @param annotation {@code non-null;} the element to add
168 public void add(Annotation annotation) { method in class:Annotations
189 * @param toAdd {@code non-null;} the annotations to add
200 add(a);
/dalvik/dx/src/com/android/dx/cf/code/
H A DSwitchList.java138 targets.add(target);
147 public void add(int value, int target) { method in class:SwitchList
154 values.add(value);
155 targets.add(target);
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotation.java197 * @param pair {@code non-null;} the (name, value) pair to add to this instance
199 public void add(NameValuePair pair) { method in class:Annotation
H A DAnnotations.java77 result.add(annotation);
165 * @param annotation {@code non-null;} the element to add
168 public void add(Annotation annotation) { method in class:Annotations
189 * @param toAdd {@code non-null;} the annotations to add
200 add(a);
/dalvik/vm/
H A DIndirectRefTable.cpp61 IndirectRef IndirectRefTable::add(u4 cookie, Object* obj) function in class:IndirectRefTable
76 * add to the end of the list.
92 /* add to the end, grow if needed */

Completed in 318 milliseconds

12