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

123

/libcore/luni/src/main/java/java/security/
H A DAllPermissionCollection.java26 @Override public void add(Permission permission) { } method in class:AllPermissionCollection
H A DPermissions.java27 public void add(Permission permission) {} method in class:Permissions
H A DPermissionCollection.java30 public abstract void add(Permission permission); method in class:PermissionCollection
H A DPermissionsHash.java42 * the permission to add to the collection.
44 public void add(Permission permission) { method in class:PermissionsHash
/libcore/luni/src/main/java/libcore/reflect/
H A DListOfVariables.java25 void add (TypeVariable<?> elem) { method in class:ListOfVariables
26 array.add(elem);
H A DListOfTypes.java37 this.types.add(type);
41 void add(Type type) { method in class:ListOfTypes
45 types.add(type);
/libcore/luni/src/main/java/java/util/
H A DAbstractQueue.java17 * elements. Methods {@link #add add}, {@link #remove remove}, and
54 * @param e the element to add
55 * @return <tt>true</tt> (as specified by {@link Collection#add})
65 public boolean add(E e) { method in class:AbstractQueue
132 * trying to add an element (including, in particular, a
149 * @see #add(Object)
158 if (add(e))
H A DQueue.java34 * <td>{@link #add add(e)}</td>
63 * java.util.Collection#add Collection.add} method, which can fail to
64 * add an element only by throwing an unchecked exception. The
121 * @param e the element to add
122 * @return <tt>true</tt> (as specified by {@link Collection#add})
132 boolean add(E e); method in interface:Queue
138 * preferable to {@link #add}, which can fail to insert an element only
141 * @param e the element to add
[all...]
H A DAbstractSequentialList.java36 public void add(int location, E object) { method in class:AbstractSequentialList
37 listIterator(location).add(object);
46 it.add(colIt.next());
H A DListIterator.java40 void add(E object); method in interface:ListIterator
109 * {@code remove} or {@code add} have already been called after
128 * {@code remove} or {@code add} have already been called after
H A DUnsafeArrayList.java36 @Override public boolean add(T element) { method in class:UnsafeArrayList
H A DAbstractCollection.java26 * modifiable collection it's necessary to override the {@code add()} method that
39 public boolean add(E object) { method in class:AbstractCollection
44 * Attempts to add all of the objects contained in {@code collection}
46 * iterates over the given {@code Collection} and calls {@code add} for each
76 if (add(it.next())) {
350 result.add(entry);
H A DCollection.java48 * Attempts to add {@code object} to the contents of this
69 * the object to add.
83 public boolean add(E object); method in interface:Collection
86 * Attempts to add all of the objects contained in {@code Collection}
H A DSet.java33 * the object to add.
42 public boolean add(E object); method in interface:Set
H A DHashSet.java71 * the collection of elements to add.
77 add(e);
89 * the object to add.
94 public boolean add(E object) { method in class:HashSet
/libcore/luni/src/main/java/java/lang/ref/
H A DReferenceQueue.java148 static void add(Reference<?> list) { method in class:ReferenceQueue
H A DFinalizerReference.java53 public static void add(Object referent) { method in class:FinalizerReference
/libcore/luni/src/main/java/java/net/
H A DCookieStore.java50 void add(URI uri, HttpCookie cookie); method in interface:CookieStore
H A DCookieStoreImpl.java34 public synchronized void add(URI uri, HttpCookie cookie) { method in class:CookieStoreImpl
47 cookies.add(cookie);
76 result.add(cookie);
96 result.add(cookie);
112 result.add(cookie);
/libcore/luni/src/main/java/libcore/net/
H A DMimeUtils.java50 add("application/andrew-inset", "ez");
51 add("application/dsptype", "tsp");
52 add("application/futuresplash", "spl");
53 add("application/hta", "hta");
54 add("application/mac-binhex40", "hqx");
55 add("application/mac-compactpro", "cpt");
56 add("application/mathematica", "nb");
57 add("application/msaccess", "mdb");
58 add("application/oda", "oda");
59 add("applicatio
368 private static void add(String mimeType, String extension) { method in class:MimeUtils
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DNodeListImpl.java46 void add(NodeImpl node) { method in class:NodeListImpl
47 children.add(node);
/libcore/luni/src/main/java/java/util/concurrent/
H A DBlockingQueue.java42 * <td>{@link #add add(e)}</td>
65 * to {@code add}, {@code put} or {@code offer} a {@code null}. A
160 * @param e the element to add
161 * @return {@code true} (as specified by {@link Collection#add})
170 boolean add(E e); method in interface:BlockingQueue
177 * generally preferable to {@link #add}, which can fail to insert an
180 * @param e the element to add
195 * @param e the element to add
209 * @param e the element to add
[all...]
H A DCopyOnWriteArraySet.java23 * <li>Mutative operations ({@code add}, {@code set}, {@code remove}, etc.)
43 * public void addHandler(Handler h) { handlers.add(h); }
217 public boolean add(E e) { method in class:CopyOnWriteArraySet
247 * @see #add(Object)
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/
H A DMethodLogger.java41 public void add(String method, Object ... args) { method in class:MethodLogger
45 methods.add(method);
46 argLists.add(argsCopy);
/libcore/luni/src/test/java/libcore/java/util/
H A DOldListIteratorTest.java58 public void add(Object o) { method in class:OldListIteratorTest.Mock_ListIterator
219 l.add(new Integer(33));
224 ml.add("Wrong element");
231 ml.add(new Double("3.14"));
238 ml.add("");
249 ll.add(objArray[i]);

Completed in 407 milliseconds

123