Searched defs:add (Results 76 - 100 of 411) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DTrack.java71 // use a hashset to detect duplicate events in add(MidiEvent)
85 eventsList.add(eotEvent);
86 set.add(eotEvent);
95 * @param event the event to add
99 public boolean add(MidiEvent event) { method in class:Track
115 // if there is no eot event, add our immutable instance again
125 eventsList.add(eotEvent);
126 set.add(eotEvent);
130 // first see if we are trying to add
145 set.add(even
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DEventListenerList.java54 * listenerList.add(FooListener.class, l);
177 public synchronized <T extends EventListener> void add(Class<T> t, T l) { method in class:EventListenerList
193 // Otherwise copy the array and add the new listener
273 add((Class<EventListener>)Class.forName((String)listenerTypeOrNull, true, cl), l);
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DListPeer.java55 * @param item the item to add to the list
56 * @param index the index where to add the item into the list
58 * @see List#add(String, int)
60 void add(String item, int index); method in interface:ListPeer
/openjdk7/jdk/src/share/classes/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));
/openjdk7/jdk/src/share/classes/java/security/
H A DAllPermission.java182 * @param permission the Permission object to add.
191 public void add(Permission permission) method in class:AllPermissionCollection
197 throw new SecurityException("attempt to add a Permission to a readonly PermissionCollection");
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DBlockingQueue.java67 * <td>{@link #add add(e)}</td>
90 * to <tt>add</tt>, <tt>put</tt> or <tt>offer</tt> a <tt>null</tt>. A
190 * @param e the element to add
191 * @return <tt>true</tt> (as specified by {@link Collection#add})
200 boolean add(E e); method in interface:BlockingQueue
207 * generally preferable to {@link #add}, which can fail to insert an
210 * @param e the element to add
225 * @param e the element to add
239 * @param e the element to add
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCryptoAllPermission.java134 * @param permission the Permission object to add.
139 public void add(Permission permission) method in class:CryptoAllPermissionCollection
142 throw new SecurityException("attempt to add a Permission to " +
176 if (all_allowed) v.add(CryptoAllPermission.INSTANCE);
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttributeList.java41 * highly discouraged, to add objects to an {@code AttributeList} that are
43 * can be made <em>type-safe</em>, which means that an attempt to add
51 add(Attribute) method would then override add(E) in ArrayList<E>,
52 and our return value is void whereas ArrayList.add(E)'s is boolean.
149 * {@code AttributeList} instance, a subsequent attempt to add
174 public void add(Attribute object) { method in class:AttributeList
175 super.add(object);
189 public void add(int index, Attribute object) { method in class:AttributeList
191 super.add(inde
271 public boolean add(Object element) { method in class:AttributeList
283 public void add(int index, Object element) { method in class:AttributeList
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSet.inline.hpp78 inline void HeapRegionSet::add(HeapRegion* hr) { function in class:HeapRegionSet
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DArrayQueue.java60 public boolean add(T o) { method in class:ArrayQueue
66 return true; // we did add something
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DPrincipalImpl.java44 private InetAddress[] add = null; field in class:PrincipalImpl
50 add = new InetAddress[1];
51 add[0] = java.net.InetAddress.getLocalHost();
67 add = new InetAddress[1];
68 add[0] = java.net.InetAddress.getByName(hostName);
71 add = java.net.InetAddress.getAllByName( hostName );
80 add = new InetAddress[1];
81 add[0] = address;
90 return add[0].toString();
103 for(int i = 0; i < add
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DNameNode.java135 NameNode add(DnsName name, int idx) { method in class:NameNode
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DReferenceList.java56 * @param reference the reference to add.
60 public void add(Reference reference); method in interface:ReferenceList
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DMonitorListModel.java64 public void add(String expr) { method in class:MonitorListModel
65 monitors.add(expr);
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DZone.java93 if (!targetZones.add(line)) {
118 * Forces to add "MET" to the target zone table. This is because
124 targetZones.add("MET");
138 void add(ZoneRec rec) { method in class:Zone
139 list.add(rec);
/openjdk7/hotspot/src/share/vm/runtime/
H A Datomic.cpp102 jlong Atomic::add(jlong add_value, volatile jlong* dest) { function in class:Atomic
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/mime/
H A DMIMEMultipartRelated.java55 public void add(MIMEPart part) { method in class:MIMEMultipartRelated
56 _parts.add(part);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DCharArrayArray.java89 public final void add(CharArray s) { method in class:CharArrayArray
H A DQualifiedNameArray.java94 public final void add(QualifiedName s) { method in class:QualifiedNameArray
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/
H A DHeaders.java54 * <li>{@link #add(String,String)} adds the given header value to the list
94 * @param value the header value to add to the header
96 public void add (String key, String value) { method in class:Headers
102 list.add (value);
126 l.add (value);
/openjdk7/jdk/src/windows/native/sun/windows/
H A DGDIHashtable.cpp88 void GDIHashtable::List::add(GDIHashtable* table) { function in class:GDIHashtable::List
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4498236.java91 test("[name=$$$; inDefaultEventSet; listenerType=interface java.awt.event.KeyListener; addListenerMethod=public void Test4498236.add(java.awt.event.KeyListener); removeListenerMethod=public void Test4498236.remove(java.awt.event.KeyListener)]",
92 new EventSetDescriptor(Test4498236.class, "$$$", type, names, "add", "remove")
94 test("[name=$$$; inDefaultEventSet; listenerType=interface java.awt.event.KeyListener; getListenerMethod=public java.awt.event.KeyListener Test4498236.get(); addListenerMethod=public void Test4498236.add(java.awt.event.KeyListener); removeListenerMethod=public void Test4498236.remove(java.awt.event.KeyListener)]",
95 new EventSetDescriptor(Test4498236.class, "$$$", type, names, "add", "remove", "get")
97 test("[name=$$$; inDefaultEventSet; listenerType=interface java.awt.event.KeyListener; addListenerMethod=public void Test4498236.add(java.awt.event.KeyListener); removeListenerMethod=public void Test4498236.remove(java.awt.event.KeyListener)]",
98 new EventSetDescriptor("$$$", type, methods, Test4498236.class.getMethod("add", type), Test4498236.class.getMethod("remove", type))
100 test("[name=$$$; inDefaultEventSet; listenerType=interface java.awt.event.KeyListener; getListenerMethod=public java.awt.event.KeyListener Test4498236.get(); addListenerMethod=public void Test4498236.add(java.awt.event.KeyListener); removeListenerMethod=public void Test4498236.remove(java.awt.event.KeyListener)]",
101 new EventSetDescriptor("$$$", type, methods, Test4498236.class.getMethod("add", type), Test4498236.class.getMethod("remove", type), Test4498236.class.getMethod("get"))
136 add(listener);
147 public void add(KeyListene method in class:Test4498236
[all...]
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest6187118.java51 return new ImmutableList<String>().add("1").add("2").add("3").add("4");
69 return getExpression(oldInstance, shortenedList, "add", object);
87 this.list.add(object);
95 public ImmutableList<T> add(T object) { method in class:Test6187118.ImmutableList
97 list.list.add(object);
H A DTest7169395.java45 container.add("test-null", null);
46 container.add("test-value", "value");
47 container.add("test-other", "other");
95 public void add(String name, String value) { method in class:Test7169395.Container
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DKeySets.java83 s.add(new Object());
88 al.add(new Object());
94 void add() throws IOException; method in interface:KeySets.Adder
102 adder.add();
107 adder.add();
114 adder.add();
119 adder.add();
126 adder.add();
144 public void add() throws IOException {
162 hs.add(re
[all...]

Completed in 68 milliseconds

1234567891011>>