Searched defs:Set (Results 1 - 9 of 9) sorted by relevance

/openjdk7/langtools/test/tools/javac/generics/
H A DTyparamStaticScope2.java36 static class Inner1 implements Set<T> {}
39 interface Set<T> {} interface
H A DInnerInterface1.java38 class Set<E> { class
45 public Set<Entry<K,V>> entrySet();
49 public Set<Entry<K,V>> entrySet() { return null; }
H A DCasting.java52 interface Set<T> { interface
58 Map<Integer,Set<Integer>> map = null;
H A DInterfaceCast1.java42 interface Set<E> extends Collection<E> { interface in inherits:Collection
46 interface SortedSet<E> extends Set<E> {
/openjdk7/hotspot/src/share/vm/libadt/
H A Dset.hpp46 // Set class is an abstract class, and cannot be constructed. Instead,
73 // Clear: Remove all the elements of a Set
74 // Insert: Insert an element into a Set; duplicates are ignored
75 // Delete: Removes an element from a Set
76 // Member: Tests for membership in a Set
77 // Size: Returns the number of members of a Set
78 // Copy: Copy or assign one Set to another
86 // Forall: Iterate over the elements of a Set. Operations that modify
89 // Complement: Only supported in the Co-Set variations. It adds a small
90 // constant-time test to every Set operatio
117 class Set : public ResourceObj { class in inherits:ResourceObj
122 Set(Arena *arena) : _set_arena(arena) {}; function in class:Set
126 Set(const Set &) {}; function in class:Set
217 typedef Set&((*Set_Constructor)(Arena *arena)); typedef
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DSet.java34 * <p>The <tt>Set</tt> interface places additional stipulations, beyond those
39 * declarations have been tailored to the <tt>Set</tt> interface, but they do
85 public interface Set<E> extends Collection<E> { interface in inherits:Collection
382 * @see Set#equals(Object)
/openjdk7/jdk/test/java/lang/reflect/Field/
H A DSet.java33 public class Set { class
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLSocketImpl.java2488 private Set<Map.Entry<HandshakeCompletedListener,AccessControlContext>>
2493 Set<Map.Entry<HandshakeCompletedListener,AccessControlContext>>
2492 NotifyHandshakeThread( Set<Map.Entry<HandshakeCompletedListener,AccessControlContext>> entrySet, HandshakeCompletedEvent e) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DOpcode.java29 import static com.sun.tools.classfile.Opcode.Set.*;
410 Opcode(Set set, int opcode) {
414 Opcode(Set set, int opcode, Instruction.Kind kind) {
420 public final Set set;
467 public enum Set { enum in class:Opcode

Completed in 67 milliseconds