Searched refs:Set (Results 1 - 25 of 1218) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javac/PackageClassAmbiguity/
H A Dutil.java26 import java.util.Set;
29 Set x;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/
H A DVocabulary.java31 import java.util.Set;
36 * Each vocabulary table is represented as a Set. A vocabulary table entry is
37 * represented as an item in the Set.
39 * The 1st item contained in a Set is assigned the smallest index value,
52 public final Set restrictedAlphabets = new LinkedHashSet();
57 public final Set encodingAlgorithms = new LinkedHashSet();
62 public final Set prefixes = new LinkedHashSet();
67 public final Set namespaceNames = new LinkedHashSet();
72 public final Set localNames = new LinkedHashSet();
77 public final Set otherNCName
[all...]
/openjdk7/langtools/test/tools/javac/generics/
H A DTyparamStaticScope2.java36 static class Inner1 implements Set<T> {}
39 interface Set<T> {} interface
H A DTyparamStaticScope.java35 import java.util.Set;
38 abstract class Inner1 implements Set<T> { }
42 abstract class Inner4 implements Set<U> { }
H A DT5011073.java35 static void f(Set<String> s, Class<String> c) {}
37 static void g(Set<Integer> s, Class c) {
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/event/
H A DVmStatusChangeEvent.java28 import java.util.Set;
43 * active Java Virtual Machine on the MonitoredHost. This Set will only
46 protected Set active;
52 * MonitoredHost. This Set will only contain Integer objects.
54 protected Set started;
60 * MonitoredHost. This Set will only contain Integer objects.
62 protected Set terminated;
74 public VmStatusChangeEvent(MonitoredHost host, Set active,
75 Set started, Set terminate
[all...]
/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/corba/src/share/classes/com/sun/corba/se/impl/orbutil/graph/
H A DGraph.java28 import java.util.Set ;
30 public interface Graph extends Set // Set<Node>
34 Set /* Set<Node> */ getRoots() ;
H A DNode.java28 import java.util.Set ;
36 Set /* Set<Node> */ getChildren() ;
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509Extension.java28 import java.util.Set;
81 * Gets a Set of the OID strings for the extension(s) marked
85 * Here is sample code to get a Set of critical extensions from an
100 * Set<String> critSet = cert.getCriticalExtensionOIDs();
102 * System.out.println("Set of critical extensions:");
108 * @return a Set (or an empty Set if none are marked critical) of
113 public Set<String> getCriticalExtensionOIDs();
116 * Gets a Set of the OID strings for the extension(s) marked
120 * Here is sample code to get a Set o
[all...]
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djava_util_Collections_CheckedSet.java32 import java.util.Set;
34 public final class java_util_Collections_CheckedSet extends AbstractTest<Set<String>> {
39 protected Set<String> getObject() {
40 Set<String> set = Collections.singleton("string");
44 protected Set<String> getAnotherObject() {
45 Set<String> set = Collections.emptySet();
H A Djava_util_Collections_SynchronizedSet.java32 import java.util.Set;
34 public final class java_util_Collections_SynchronizedSet extends AbstractTest<Set<String>> {
39 protected Set<String> getObject() {
40 Set<String> set = Collections.singleton("string");
44 protected Set<String> getAnotherObject() {
45 Set<String> set = Collections.emptySet();
H A Djava_util_Collections_UnmodifiableSet.java32 import java.util.Set;
34 public final class java_util_Collections_UnmodifiableSet extends AbstractTest<Set<String>> {
39 protected Set<String> getObject() {
40 Set<String> set = Collections.singleton("string");
44 protected Set<String> getAnotherObject() {
45 Set<String> set = Collections.emptySet();
H A Djava_util_Collections_EmptySet.java32 import java.util.Set;
34 public final class java_util_Collections_EmptySet extends AbstractTest<Set<String>> {
39 protected Set<String> getObject() {
43 protected Set<String> getAnotherObject() {
H A Djava_util_Collections_SingletonSet.java32 import java.util.Set;
34 public final class java_util_Collections_SingletonSet extends AbstractTest<Set<String>> {
39 protected Set<String> getObject() {
43 protected Set<String> getAnotherObject() {
H A Djava_util_JumboEnumSet.java32 import java.util.Set;
34 public final class java_util_JumboEnumSet extends AbstractTest<Set<EnumPrivate>> {
39 protected Set<EnumPrivate> getObject() {
43 protected Set<EnumPrivate> getAnotherObject() {
44 Set<EnumPrivate> set = EnumSet.noneOf(EnumPrivate.class);
H A Djava_util_RegularEnumSet.java32 import java.util.Set;
34 public final class java_util_RegularEnumSet extends AbstractTest<Set<EnumPublic>> {
39 protected Set<EnumPublic> getObject() {
43 protected Set<EnumPublic> getAnotherObject() {
44 Set<EnumPublic> set = EnumSet.noneOf(EnumPublic.class);
/openjdk7/langtools/test/tools/javac/rawDiags/
H A DWarning.java9 import java.util.Set;
14 Set s = new HashSet<String>();
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DEndpointContext.java29 import java.util.Set;
57 public abstract Set<Endpoint> getEndpoints();
/openjdk7/jdk/src/share/classes/java/security/
H A DAlgorithmConstraints.java28 import java.util.Set;
69 public boolean permits(Set<CryptoPrimitive> primitives,
87 public boolean permits(Set<CryptoPrimitive> primitives, Key key);
105 public boolean permits(Set<CryptoPrimitive> primitives,
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Layout/src/com/sun/hotspot/igv/layout/
H A DLayoutManager.java26 import java.util.Set;
36 public void doLayout(LayoutGraph graph, Set<? extends Vertex> firstLayerHint, Set<? extends Vertex> lastLayerHint, Set<? extends Link> importantLinks);
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DPosixFileAttributes.java28 import java.util.Set;
74 Set<PosixFilePermission> permissions();
/openjdk7/jdk/src/share/classes/com/sun/jdi/event/
H A DEventSet.java30 import java.util.Set;
130 public interface EventSet extends Mirror, Set<Event> {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/
H A DSelectBytecodesCookie.java28 import java.util.Set;
37 private Set<InputNode> nodes;
40 public SelectBytecodesCookie(Set<InputNode> nodes) {
44 public Set<InputNode> getNodes() {
/openjdk7/langtools/src/share/classes/javax/annotation/processing/
H A DRoundEnvironment.java30 import java.util.Set;
72 Set<? extends Element> getRootElements();
92 Set<? extends Element> getElementsAnnotatedWith(TypeElement a);
112 Set<? extends Element> getElementsAnnotatedWith(Class<? extends Annotation> a);

Completed in 1546 milliseconds

1234567891011>>