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

1234567891011>>

/openjdk7/langtools/test/tools/javac/generics/inference/6356673/
H A DT6365166.java36 static <A> void add(List<? super A> l, List<A> la) { method in class:T6365166
/openjdk7/jaxp/src/javax/xml/stream/util/
H A DXMLEventConsumer.java50 * discard all references to this event upon calling add.
54 * @param event the event to add, may not be null
56 public void add(XMLEvent event) method in interface:XMLEventConsumer
/openjdk7/jdk/src/share/classes/java/io/
H A DDeleteOnExitHook.java40 // Application shutdown hooks may add the first file to the
57 static synchronized void add(String file) { method in class:DeleteOnExitHook
59 // DeleteOnExitHook is running. Too late to add a file
63 files.add(file);
/openjdk7/hotspot/test/compiler/7046096/
H A DTest7046096.java38 String add(String str) { method in class:Test7046096
51 return add(str+"456");
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DContextList.java50 * the list with the method <code>add</code>, accessed
77 public abstract void add(String ctx); method in class:ContextList
H A DExceptionList.java42 * To add items to the list, you first create a <code>TypeCode</code> object
45 * method <code>add</code> to add it to the list.
73 public abstract void add(TypeCode exc); method in class:ExceptionList
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DDocAttributeSet.java40 * The {@link #add(Attribute) <CODE>add(Attribute)</CODE>}, and
64 * support the <CODE>add()</CODE> operation.
72 public boolean add(Attribute attribute); method in interface:DocAttributeSet
77 * {@link #add(Attribute) <CODE>add(Attribute)</CODE>}
108 * @see #add(Attribute)
H A DPrintJobAttributeSet.java39 * The {@link #add(Attribute) <CODE>add(Attribute)</CODE>}, and
62 * support the <CODE>add()</CODE> operation.
70 public boolean add(Attribute attribute); method in interface:PrintJobAttributeSet
75 * {@link #add(Attribute) <CODE>add(Attribute)</CODE>}
106 * @see #add(Attribute)
H A DPrintRequestAttributeSet.java40 * The {@link #add(Attribute) <CODE>add(Attribute)</CODE>}, and
63 * support the <CODE>add()</CODE> operation.
71 public boolean add(Attribute attribute); method in interface:PrintRequestAttributeSet
76 * {@link #add(Attribute) <CODE>add(Attribute)</CODE>}
107 * @see #add(Attribute)
H A DPrintServiceAttributeSet.java42 * The {@link #add(Attribute) <CODE>add(Attribute)</CODE>}, and
67 * support the <CODE>add()</CODE> operation.
75 public boolean add(Attribute attribute); method in interface:PrintServiceAttributeSet
80 * {@link #add(Attribute) <CODE>add(Attribute)</CODE>}
111 * @see #add(Attribute)
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunDisplayChanger.java70 public void add(DisplayChangedListener theListener) { method in class:SunDisplayChanger
108 // DisplayChangedListener to add or remove itself from a SunDisplayChanger.
155 // DisplayChangedListener to add or remove itself from a SunDisplayChanger.
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DChoicePeer.java45 * @param index the index where to add the item
47 * @see Choice#add(String)
49 void add(String item, int index); method in interface:ChoicePeer
/openjdk7/jdk/src/share/classes/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
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractQueue.java42 * elements. Methods {@link #add add}, {@link #remove remove}, and
83 * @param e the element to add
84 * @return <tt>true</tt> (as specified by {@link Collection#add})
94 public boolean add(E e) { method in class:AbstractQueue
161 * trying to add an element (including, in particular, a
178 * @see #add(Object)
187 if (add(e))
H A DQueue.java59 * <td>{@link #add add(e)}</td>
88 * java.util.Collection#add Collection.add} method, which can fail to
89 * add an element only by throwing an unchecked exception. The
151 * @param e the element to add
152 * @return <tt>true</tt> (as specified by {@link Collection#add})
162 boolean add(E e); method in interface:Queue
168 * preferable to {@link #add}, which can fail to insert an element only
171 * @param e the element to add
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DageTable.hpp56 // add entry
57 void add(oop p, size_t oop_size) { function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValueCollection.hpp40 void add(StackValue *val) const { _values->push(val); } function in class:StackValueCollection
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/fmt/
H A DJPropertyFile.java50 public void add( String key, String value ) { method in class:JPropertyFile
/openjdk7/jdk/src/share/classes/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...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DAccumulativeRunnable.java61 * //add text and send for the execution if needed.
62 * doSetTextImpl.add(text);
83 * doHandleDirtyRegions.add(rect);
124 public final synchronized void add(T... args) { method in class:AccumulativeRunnable
140 * This method is to be executed only from {@code add} method.
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXcbRequestCounter.java51 public void add(long v) { method in class:XcbRequestCounter
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DClassSet.java75 public boolean add(JavaClass clazz) { method in class:ClassSet
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMStringListImpl.java84 * @param domString A string to add to the list
86 public void add(String param) { method in class:DOMStringListImpl
87 fStrings.add(param);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DExceptionListImpl.java58 public void add(TypeCode tc) method in class:ExceptionListImpl
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DIORTemplateListImpl.java46 /* This class must override add( int, Object ) and set( int, Object )
56 add( index, element ) ;
62 public void add( int index, Object element ) method in class:IORTemplateListImpl
65 super.add( index, element ) ;
84 add( iortemp ) ;

Completed in 73 milliseconds

1234567891011>>