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

12345

/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/ojluni/src/main/java/java/io/
H A DDeleteOnExitHook.java40 java.lang.Shutdown.add(2, true,
51 static synchronized void add(String file) { method in class:DeleteOnExitHook
53 // DeleteOnExitHook is running. Too late to add a file
57 files.add(file);
/libcore/ojluni/src/main/java/java/security/
H A DPermissions.java39 public void add(Permission permission) { } method in class:Permissions
H A DPermissionCollection.java36 public abstract void add(Permission permission); method in class:PermissionCollection
H A DUnresolvedPermissionCollection.java71 * @param permission the Permission object to add.
74 public void add(Permission permission) method in class:UnresolvedPermissionCollection
90 v.add(up);
/libcore/ojluni/src/main/java/java/lang/
H A DApplicationShutdownHooks.java42 Shutdown.add(1 /* shutdown hook invocation order */,
64 static synchronized void add(Thread hook) { method in class:ApplicationShutdownHooks
77 /* Remove a previously-registered hook. Like the add method, this method
/libcore/ojluni/src/main/java/java/util/
H A DAbstractQueue.java45 * elements. Methods {@link #add add}, {@link #remove remove}, and
82 * @param e the element to add
83 * @return {@code true} (as specified by {@link Collection#add})
93 public boolean add(E e) { method in class:AbstractQueue
160 * trying to add an element (including, in particular, a
177 * @see #add(Object)
186 if (add(e))
H A DQueue.java62 * <td>{@link Queue#add add(e)}</td>
91 * java.util.Collection#add Collection.add} method, which can fail to
92 * add an element only by throwing an unchecked exception. The
141 * @param e the element to add
142 * @return {@code true} (as specified by {@link Collection#add})
152 boolean add(E e); method in interface:Queue
158 * preferable to {@link #add}, which can fail to insert an element only
161 * @param e the element to add
[all...]
H A DAbstractSequentialList.java37 * <tt>set(int index, E element)</tt>, <tt>add(int index, E element)</tt> and
50 * <tt>add</tt> methods.<p>
132 * inserts the specified element with <tt>ListIterator.add</tt>.
136 * implement the <tt>add</tt> operation.
144 public void add(int index, E element) { method in class:AbstractSequentialList
146 listIterator(index).add(element);
198 * list, one at a time, using <tt>ListIterator.add</tt> followed by
203 * the <tt>listIterator</tt> method does not implement the <tt>add</tt>
218 e1.add(e2.next());
H A DListIterator.java140 * It can be made only if {@link #add} has not been
147 * {@code add} have been called after the last call to
156 * #add} have been called after the last call to {@code next} or
169 * {@code add} have been called after the last call to
187 * @throws UnsupportedOperationException if the {@code add} method is
194 void add(E e); method in interface:ListIterator
H A DStringJoiner.java46 * sj.add("George").add("Sally").add("Fred");
73 * suffix, so that we can more easily add elements without having to jigger
135 * parameter is made for this purpose. Note that once an add method has been
181 * @param newElement The element to add
184 public StringJoiner add(CharSequence newElement) { method in class:StringJoiner
194 * <p>A {@code StringJoiner} is empty if {@link #add(CharSequence) add()}
233 * no add method
[all...]
/libcore/ojluni/src/main/java/sun/security/util/
H A DUntrustedCertificates.java57 private static void add(String alias, String pemCert) { method in class:UntrustedCertificates
64 if (!untrustedCerts.add(cert)) {
92 add("digicert-server-cross-to-cybertrust-4C0E636A",
128 add("digicert-server-cross-to-entrust-ca-4C0E636A",
173 add("java-media-pretrusted-9F191E4E",
216 add("java-fx10-pretrusted-4A1EF027",
259 add("javafx-runtime-pretrusted-6217C0FF",
306 add("solaris-internal-dev-A0E1CD8C",
359 add("info-at-diginotar-cyber-ca-cross-to-gte-cybertrust-0727100D",
400 add("diginota
[all...]
/libcore/luni/src/main/java/libcore/net/
H A DMimeUtils.java45 add("application/andrew-inset", "ez");
46 add("application/dsptype", "tsp");
47 add("application/epub+zip", "epub");
48 add("application/hta", "hta");
49 add("application/mac-binhex40", "hqx");
50 add("application/mathematica", "nb");
51 add("application/msaccess", "mdb");
52 add("application/oda", "oda");
53 add("application/ogg", "ogg");
54 add("applicatio
392 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/ojluni/src/main/java/java/net/
H A DCookieStore.java35 * <p>{@link CookieManager} will call <tt>CookieStore.add</tt> to save cookies
67 public void add(URI uri, HttpCookie cookie); method in interface:CookieStore
80 * @see #add
/libcore/ojluni/src/main/java/javax/crypto/
H A DCryptoPermissions.java49 public void add(Permission permission) { } method in class:CryptoPermissions
/libcore/ojluni/src/main/java/sun/misc/
H A DCleaner.java78 private static synchronized Cleaner add(Cleaner cl) { method in class:Cleaner
132 return add(new Cleaner(ob, thunk));
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DNativeThreadSet.java45 int add() { method in class:NativeThreadSet
/libcore/support/src/test/java/tests/util/
H A DSummaryStatistics.java40 public void add(double value) { method in class:SummaryStatistics
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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/main/java/java/util/concurrent/
H A DBlockingQueue.java43 * <td>{@link #add add(e)}</td>
66 * to {@code add}, {@code put} or {@code offer} a {@code null}. A
161 * @param e the element to add
162 * @return {@code true} (as specified by {@link Collection#add})
171 boolean add(E e); method in interface:BlockingQueue
178 * generally preferable to {@link #add}, which can fail to insert an
181 * @param e the element to add
196 * @param e the element to add
210 * @param e the element to add
[all...]
/libcore/ojluni/src/main/java/java/beans/
H A DChangeListenerMap.java77 public final synchronized void add(String name, L listener) { method in class:ChangeListenerMap
175 list.add(listener);
182 list.add(newProxy(name, listener));
/libcore/ojluni/src/main/java/sun/security/x509/
H A DGeneralNames.java69 add(name);
80 public GeneralNames add(GeneralName name) { method in class:GeneralNames
84 names.add(name);
/libcore/luni/src/main/java/java/lang/ref/
H A DFinalizerReference.java53 public static void add(Object referent) { method in class:FinalizerReference
119 ReferenceQueue.add(sentinelReference);

Completed in 748 milliseconds

12345