Searched refs:IdentityArrayList (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DDialog.java39 import sun.awt.util.IdentityArrayList;
269 transient static IdentityArrayList<Dialog> modalDialogs = new IdentityArrayList<Dialog>();
271 transient IdentityArrayList<Window> blockedWindows = new IdentityArrayList<Window>();
1399 IdentityArrayList<Dialog> blockers = new IdentityArrayList<Dialog>();
1428 IdentityArrayList<Window> blockersHierarchies = new IdentityArrayList<Window>(blockers);
1441 IdentityArrayList<Windo
[all...]
H A DWindow.java57 import sun.awt.util.IdentityArrayList;
258 private static final IdentityArrayList<Window> allWindows = new IdentityArrayList<Window>();
1521 static IdentityArrayList<Window> getAllWindows() {
1523 IdentityArrayList<Window> v = new IdentityArrayList<Window>();
1529 static IdentityArrayList<Window> getAllUnblockedWindows() {
1531 IdentityArrayList<Window> unblocked = new IdentityArrayList<Window>();
/openjdk7/jdk/src/share/classes/sun/awt/util/
H A DIdentityArrayList.java50 * Each <tt>IdentityArrayList</tt> instance has a <i>capacity</i>. The capacity is
52 * at least as large as the list size. As elements are added to an IdentityArrayList,
57 * An application can increase the capacity of an <tt>IdentityArrayList</tt> instance
62 * If multiple threads access an <tt>IdentityArrayList</tt> instance concurrently,
74 * List list = Collections.synchronizedList(new IdentityArrayList(...));</pre>
95 public class IdentityArrayList<E> extends AbstractList<E> class in inherits:AbstractList,List,RandomAccess
100 * The array buffer into which the elements of the IdentityArrayList are stored.
101 * The capacity of the IdentityArrayList is the length of this array buffer.
106 * The size of the IdentityArrayList (the number of elements it contains).
119 public IdentityArrayList(in method in class:IdentityArrayList
130 public IdentityArrayList() { method in class:IdentityArrayList
142 public IdentityArrayList(Collection<? extends E> c) { method in class:IdentityArrayList
[all...]

Completed in 1967 milliseconds