Searched defs:add (Results 176 - 200 of 411) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/util/
H A DJumboEnumSet.java197 public boolean add(E e) { method in class:JumboEnumSet
H A DList.java44 * <tt>iterator</tt>, <tt>add</tt>, <tt>remove</tt>, <tt>equals</tt>, and
77 * add an ineligible element throws an unchecked exception, typically
219 * lists will refuse to add null elements, and others will impose
225 * @return <tt>true</tt> (as specified by {@link Collection#add})
226 * @throws UnsupportedOperationException if the <tt>add</tt> operation
235 boolean add(E e); method in interface:List
302 * @see #add(Object)
465 * @throws UnsupportedOperationException if the <tt>add</tt> operation
476 void add(int index, E element); method in interface:List
H A DPropertyPermission.java469 * @param permission the Permission object to add.
478 public void add(Permission permission) method in class:PropertyPermissionCollection
485 "attempt to add a Permission to a readonly PermissionCollection");
H A DRegularEnumSet.java159 public boolean add(E e) { method in class:RegularEnumSet
H A DTimer.java408 queue.add(task);
566 * offers log(n) performance for the add, removeMin and rescheduleMin
596 void add(TimerTask task) { method in class:TaskQueue
H A DTreeSet.java35 * operations ({@code add}, {@code remove} and {@code contains}).
117 * {@code e2} in the set. If the user attempts to add an element
119 * attempts to add a string element to a set whose elements are
120 * integers), the {@code add} call will throw a
132 * {@code e1} and {@code e2} in the set. If the user attempts to add
134 * {@code add} call will throw a {@code ClassCastException}.
254 public boolean add(E e) { method in class:TreeSet
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DBlockingDeque.java138 * <td>{@link #add(Object) add(e)}</td>
215 * @param e the element to add
230 * @param e the element to add
247 * @param e the element to add
263 * @param e the element to add
274 * @param e the element to add
288 * @param e the element to add
303 * @param e the element to add
325 * @param e the element to add
449 boolean add(E e); method in interface:BlockingDeque
[all...]
H A DDelayQueue.java119 * @param e the element to add
120 * @return <tt>true</tt> (as specified by {@link Collection#add})
123 public boolean add(E e) { method in class:DelayQueue
130 * @param e the element to add
153 * @param e the element to add
164 * @param e the element to add
334 c.add(q.poll());
364 c.add(q.poll());
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCryptoPermission.java491 * @param permission the Permission object to add.
496 public void add(Permission permission) method in class:CryptoPermissionCollection
499 throw new SecurityException("attempt to add a Permission " +
H A DCryptoPermissions.java49 * <p>When the <code>add</code> method is called to add a
56 * create the PermissionCollection and add it to the Permissions object.
106 this.add(parsingResult[i]);
128 * @param permission the Permission object to add.
135 public void add(Permission permission) { method in class:CryptoPermissions
138 throw new SecurityException("Attempt to add a Permission " +
148 pc.add(cryptoPerm);
222 // find out if there is anything we should add into
249 ret.add(partialResul
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanServerPermission.java341 public synchronized void add(Permission permission) { method in class:MBeanServerPermissionCollection
/openjdk7/jdk/src/share/classes/javax/naming/
H A DCompositeName.java460 * @param suffix The non-null components to add.
483 * @param n The non-null components to add.
484 * @param posn The index in this name at which to add the new
506 * @param comp The non-null component to add.
511 public Name add(String comp) throws InvalidNameException { method in class:CompositeName
512 impl.add(comp);
523 * @param comp The non-null component to add.
524 * @param posn The index at which to add the new component.
532 public Name add(int posn, String comp) method in class:CompositeName
535 impl.add(pos
[all...]
H A DCompoundName.java172 * @param comps A non-null enumeration of the components to add.
451 * @param suffix The non-null components to add.
477 * @param n The non-null components to add.
478 * @param posn The index in this name at which to add the new
500 * @param comp The non-null component to add.
505 public Name add(String comp) throws InvalidNameException{ method in class:CompoundName
506 impl.add(comp);
517 * @param comp The non-null component to add.
518 * @param posn The index at which to add the new component.
526 public Name add(in method in class:CompoundName
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DLdapName.java154 this.rdns.add(obj);
413 * @param suffix The non-null components to add.
428 * @param suffixRdns The non-null suffix <tt>Rdn</tt>s to add.
441 * @param suffix The non-null components to add.
442 * @param posn The index at which to add the new component.
462 rdns.add(posn++,
476 * @param suffixRdns The non-null suffix <tt>Rdn</tt>s to add.
477 * @param posn The index at which to add the suffix RDNs.
492 rdns.add(i + posn, obj);
500 * @param comp The non-null component to add
506 public Name add(String comp) throws InvalidNameException { method in class:LdapName
518 public Name add(Rdn comp) { method in class:LdapName
539 public Name add(int posn, String comp) throws InvalidNameException { method in class:LdapName
561 public Name add(int posn, Rdn comp) { method in class:LdapName
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Doptoreg.hpp74 // "for ( OptoReg::Name i; i=Control; i = add(i,1) ) ..."
75 static Name add( Name x, int y ) { return Name(x+y); } function in class:VALUE_OBJ_CLASS_SPEC
126 // return return VMRegImpl::stack2reg(reg2stack(OptoReg::add(n, -arg_count)));
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DFixedList.java51 flist.add(null);
85 public boolean add(E e) throws UnsupportedOperationException { method in class:FixedList
135 public void add(int index, E element) throws UnsupportedOperationException { method in class:FixedList
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHeaders.java50 * <li>{@link #add(String,String)} adds the given header value to the list for the given key</li>
136 * @param value the header value to add to the header
138 public void add (String key, String value) { method in class:Headers
145 l.add (value);
157 l.add (value);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/event/
H A DAbstractEventSet.java249 public boolean add(Event e){ method in class:AbstractEventSet
/openjdk7/jdk/src/share/classes/java/awt/
H A DMenuBar.java193 add(m);
220 public Menu add(Menu m) { method in class:MenuBar
243 * @see java.awt.MenuBar#add(java.awt.Menu)
261 * @see java.awt.MenuBar#add(java.awt.Menu)
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Datomic_bsd_zero.inline.hpp79 /* Atomically add an int to memory. */
140 /* Atomically add an int to memory. */
179 inline jint Atomic::add(jint add_value, volatile jint* dest) { function in class:Atomic
208 add(1, dest);
220 add(-1, dest);
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Datomic_linux_zero.inline.hpp79 /* Atomically add an int to memory. */
140 /* Atomically add an int to memory. */
173 inline jint Atomic::add(jint add_value, volatile jint* dest) { function in class:Atomic
202 add(1, dest);
214 add(-1, dest);
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Datomic_solaris_x86.inline.hpp47 inline void Atomic::inc (volatile jint* dest) { (void)add (1, dest); }
51 inline void Atomic::dec (volatile jint* dest) { (void)add (-1, dest); }
79 inline jint Atomic::add (jint add_value, volatile jint* dest) { function in class:Atomic
131 return (intptr_t)add((jint)add_value, (volatile jint*)dest);
135 return (void*)add((jint)add_value, (volatile jint*)dest);
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Datomic_windows_x86.inline.hpp76 inline jint Atomic::add (jint add_value, volatile jint* dest) { function in class:Atomic
89 (void)add (1, dest);
101 (void)add (-1, dest);
144 inline jint Atomic::add (jint add_value, volatile jint* dest) { function in class:Atomic
152 add eax, ecx;
157 return (intptr_t)add((jint)add_value, (volatile jint*)dest);
161 return (void*)add((jint)add_value, (volatile jint*)dest);
170 add dword ptr [edx], 1;
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DZoneinfo.java85 void add(Zone zone) { method in class:Zoneinfo
94 void add(Rule rule) { method in class:Zoneinfo
269 zone.add(zrec);
273 zi.add(zone);
285 zi.add(rule);
289 rule.add(rrec);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dtimer.cpp48 void elapsedTimer::add(elapsedTimer t) { function in class:elapsedTimer
147 if (_accum!=NULL) _accum->add(_t);

Completed in 410 milliseconds

1234567891011>>