Searched defs:toAdd (Results 1 - 2 of 2) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DAnnotations.java189 * @param toAdd {@code non-null;} the annotations to add
192 public void addAll(Annotations toAdd) { argument
195 if (toAdd == null) {
196 throw new NullPointerException("toAdd == null");
199 for (Annotation a : toAdd.annotations.values()) {
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotations.java189 * @param toAdd {@code non-null;} the annotations to add
192 public void addAll(Annotations toAdd) { argument
195 if (toAdd == null) {
196 throw new NullPointerException("toAdd == null");
199 for (Annotation a : toAdd.annotations.values()) {

Completed in 822 milliseconds