Searched defs:coll (Results 1 - 11 of 11) sorted by relevance

/openjdk7/langtools/test/tools/javac/generics/inference/6302954/
H A DT6476073.java35 public static <B> void m(List<? super B> list,Collection<? super B> coll) { argument
36 m(list,coll);
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCollectionCertStoreParameters.java58 private Collection<?> coll; field in class:CollectionCertStoreParameters
89 coll = collection;
98 coll = Collections.EMPTY_SET;
111 return coll;
137 sb.append(" collection: " + coll + "\n");
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DCollectionCertStore.java82 private Collection<?> coll; field in class:CollectionCertStore
102 coll = ((CollectionCertStoreParameters) params).getCollection();
119 if (coll == null) {
126 Iterator<?> i = coll.iterator();
163 if (coll == null)
170 Iterator<?> i = coll.iterator();
H A DIndexedCollectionCertStore.java128 Collection<?> coll = ((CollectionCertStoreParameters)params).getCollection();
129 if (coll == null) {
133 buildIndex(coll);
140 private void buildIndex(Collection<?> coll) { argument
145 for (Object obj : coll) {
/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DStringsAndBounds.java50 static <S extends Object & Comparable<? super S> > S max(Collection<? extends S> coll) { argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DVariablePanel.java78 CCollector coll = new CCollector();
79 fr.iterateLocals(coll);
80 update(coll);
93 StackValueCollection coll = jfr.getLocals();
136 node = new sun.jvm.hotspot.ui.tree.FloatTreeNodeAdapter(coll.floatAt(local.getSlot()), f, true);
140 node = new sun.jvm.hotspot.ui.tree.DoubleTreeNodeAdapter(coll.doubleAt(local.getSlot()), f, true);
144 node = new sun.jvm.hotspot.ui.tree.CharTreeNodeAdapter((char) coll.intAt(local.getSlot()), f, true);
150 node = new sun.jvm.hotspot.ui.tree.LongTreeNodeAdapter(coll.intAt(local.getSlot()), f, true);
155 ((coll.intAt(local.getSlot()) != 0) ? true : false), f, true
160 node = new sun.jvm.hotspot.ui.tree.LongTreeNodeAdapter(coll
201 update(CCollector coll) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/event/
H A DAbstractEventSet.java257 public boolean addAll(Collection<? extends Event> coll) { argument
261 public boolean removeAll(Collection<?> coll) { argument
265 public boolean retainAll(Collection<?> coll) { argument
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextSupport.java887 * @param coll the <tt>Collection</tt> to serialize
890 protected final void serialize(ObjectOutputStream oos, Collection coll) throws IOException { argument
892 Object[] objects = coll.toArray();
916 * @param coll the Collection
918 protected final void deserialize(ObjectInputStream ois, Collection coll) throws IOException, ClassNotFoundException { argument
924 coll.add(ois.readObject());
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventSetImpl.java862 public boolean addAll(Collection<? extends Event> coll) { argument
865 public boolean removeAll(Collection<?> coll) { argument
868 public boolean retainAll(Collection<?> coll) { argument
/openjdk7/jdk/src/share/classes/java/util/
H A DCollections.java617 * @param coll the collection whose minimum element is to be determined.
626 public static <T extends Object & Comparable<? super T>> T min(Collection<? extends T> coll) { argument
627 Iterator<? extends T> i = coll.iterator();
649 * @param coll the collection whose minimum element is to be determined.
660 public static <T> T min(Collection<? extends T> coll, Comparator<? super T> comp) { argument
662 return (T)min((Collection<SelfComparable>) (Collection) coll);
664 Iterator<? extends T> i = coll.iterator();
687 * @param coll the collection whose maximum element is to be determined.
696 public static <T extends Object & Comparable<? super T>> T max(Collection<? extends T> coll) { argument
697 Iterator<? extends T> i = coll
730 max(Collection<? extends T> coll, Comparator<? super T> comp) argument
1081 containsAll(Collection<?> coll) argument
1084 addAll(Collection<? extends E> coll) argument
1087 removeAll(Collection<?> coll) argument
1090 retainAll(Collection<?> coll) argument
1454 containsAll(Collection<?> coll) argument
1642 containsAll(Collection<?> coll) argument
1645 addAll(Collection<? extends E> coll) argument
1648 removeAll(Collection<?> coll) argument
1651 retainAll(Collection<?> coll) argument
2300 containsAll(Collection<?> coll) argument
2303 removeAll(Collection<?> coll) argument
2306 retainAll(Collection<?> coll) argument
2331 checkedCopyOf(Collection<? extends E> coll) argument
2353 addAll(Collection<? extends E> coll) argument
2735 addAll(Collection<? extends Map.Entry<K, V>> coll) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1703 ClassFileParser::AnnotationCollector* coll,
1739 AnnotationCollector::ID id = coll->annotation_index(aname);
1741 coll->set_annotation(id);
1762 // coll->_class_RetentionPolicy = payload;
1701 parse_annotations(u1* buffer, int limit, constantPoolHandle cp, ClassFileParser::AnnotationCollector* coll, TRAPS) argument

Completed in 561 milliseconds