Searched refs:list (Results 126 - 150 of 832) sorted by relevance

1234567891011>>

/openjdk7/hotspot/test/compiler/6724218/
H A DTest.java37 static Test list = null; field in class:Test
42 Test t = list;
43 list = t.next;
67 t.next = list;
68 list = t;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DContentType.java48 private ParameterList list; // parameter list field in class:ContentType
82 list = new ParameterList(rem);
121 if (list == null)
124 return list.get(name);
134 return list;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/
H A DHeaders.java47 * Then get("hEaDeRnAmE") would give both "value1", and "value2" values in a list
54 * <li>{@link #add(String,String)} adds the given header value to the list
57 * value given overwriting any existing values in the value list.
62 * as either a null entry for the key (i.e. the list is null) or where the key
63 * has a list, but one (or more) of the list's values is null. Null values are
90 * Adds the given value to the list of headers for the given key. If the
97 List<String> list = this.get(key);
98 if (list == null) {
99 list
[all...]
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DCircularList.java46 p.writeObject(CircularListTest.list);
72 public static CircularListTest list = null; field in class:CircularListTest
75 list = new CircularListTest();
76 list.next = list;
/openjdk7/jdk/test/java/util/Collections/
H A DDisjoint.java44 List<Integer> list = new ArrayList<Integer>(size);
46 list.add(x++);
47 list.add(x);
48 Collections.shuffle(list);
50 lists[i] = list;
/openjdk7/jdk/test/javax/management/query/
H A DInstanceOfExpTest.java57 Set<ObjectName> list = mbs.queryNames(new ObjectName("*:*"), exp);
59 if (list.contains(name1) || !list.contains(name2)) {
63 for (ObjectName on : list) {
71 if (mbs.isInstanceOf(n, className) != list.contains(n))
/openjdk7/jdk/test/java/util/List/
H A DLockStep.java56 for (List list : lists)
57 equalLists(list, lists[0]);
73 for (final List list : lists)
74 testEmptyList(list);
77 for (final List list : lists) {
78 adder.frob(list);
79 equal(list.size(), i+1);
86 for (final List list : lists) {
90 Iterator it = list.iterator();
91 adder.frob(list);
155 asSubList(List<T> list) argument
171 testEmptyList(List list) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLevel.java346 // about a new log level. Add it to our list.
440 // KnownLevel class maintains the global list of all known levels.
475 // the mirroredLevel object is always added to the list
478 List<KnownLevel> list = nameToLevels.get(l.name);
479 if (list == null) {
480 list = new ArrayList<>();
481 nameToLevels.put(l.name, list);
483 list.add(o);
485 list = intToLevels.get(l.value);
486 if (list
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DClassTree.java60 * List of base-interfaces. Contains list of all the interfaces who do not
116 * Return the sub-class list for java.lang.Object which will be having
149 List<ClassDoc> list = implementingclasses.get(classes[i]);
150 if (list != null) {
151 Collections.sort(list);
174 * add this Class as a sub class in the list
189 } else { // cd is java.lang.Object, add it once to the list
202 * put this interface in the sub-interface list of those interfaces. Do it
204 * that interface in the list of all the baseinterfaces.
220 // super-interfaces to baseinterfaces list t
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/resolver/
H A DCompositeResolverImpl.java51 public java.util.Set list() method in class:CompositeResolverImpl
54 result.addAll( first.list() ) ;
55 result.addAll( second.list() ) ;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaListUI.java66 list.getActionMap().put("aquaHome", new AquaHomeEndAction(true));
67 list.getActionMap().put("aquaEnd", new AquaHomeEndAction(false));
81 final JList list = (JList)e.getSource();
84 list.ensureIndexIsVisible(0);
86 final int size = list.getModel().getSize();
87 list.ensureIndexIsVisible(size - 1);
138 return list;
143 final Rectangle rowBounds = getCellBounds(list, selectedIndex, selectedIndex);
146 final ListCellRenderer renderer = list.getCellRenderer();
149 final Component rendererComponent = renderer.getListCellRendererComponent(list, valu
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DParameterList.java47 private final HashMap list; field in class:ParameterList
53 this.list = new HashMap();
57 this.list = m;
61 * Constructor that takes a parameter-list string. The String
64 * Note that an empty parameter-list string is valid and will be
67 * @param s the parameter-list string.
76 list = new HashMap();
108 list.put(name, tk.getValue());
115 * Return the number of parameters in this list.
120 return list
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DBakedArrayList.java40 * where the list won't change and you want to avoid the overhead of hashCode
65 * Caches the hash code. It is assumed you won't modify the list, or that
80 BakedArrayList list = (BakedArrayList)o;
83 if (list.size() != size) {
87 if (!get(size).equals(list.get(size))) {
H A DAccumulativeRunnable.java109 * with the list of accumulated arguments.
155 List<T> list = arguments;
157 return list;
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DIndexedCollectionCertStore.java183 List<X509Certificate> list = new ArrayList<X509Certificate>(2);
184 list.add(cert);
185 list.add((X509Certificate)oldEntry);
186 certSubjects.put(subject, list);
188 List<X509Certificate> list = (List<X509Certificate>)oldEntry;
189 if (list.contains(cert) == false) {
190 list.add(cert);
192 certSubjects.put(subject, list);
208 List<X509CRL> list = new ArrayList<X509CRL>(2);
209 list
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DSequencedEvent.java52 private static final LinkedList list = new LinkedList(); field in class:SequencedEvent
83 list.add(this);
95 * dispatch() shall never call dispose() while holding the lock on the list,
163 return (SequencedEvent)list.getFirst();
184 * it shall never be called while holding the lock on the list,
186 * lock on the list. The locks should be acquired in the same order.
210 if (list.getFirst() == this) {
211 list.removeFirst();
213 if (!list.isEmpty()) {
214 next = (SequencedEvent)list
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DMatcherSelector.java44 List<Figure> list = selector.selectMultiple(matcher);
45 return list;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DNodeListIterator.java40 public NodeListIterator(NodeList list) { argument
41 _list = list;
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_reference.h9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
53 RefIndex list);
55 RefIndex list);
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest6524757.java160 List<Object> list = new ArrayList<Object>(KEYS.length);
166 list.add(ok.getText());
167 list.add(cancel.getText());
168 list.add(reset.getText());
169 list.add(Integer.valueOf(reset.getMnemonic()));
173 list.add(panel.getDisplayName());
174 list.add(Integer.valueOf(panel.getMnemonic()));
179 addSize(list, upper, 1, 1, 31, 9);
180 list.add(label.getText());
181 addSize(list, lowe
214 addSize(List<Object> list, Component component, int x, int y, int w, int h) argument
[all...]
/openjdk7/langtools/test/tools/javac/generics/
H A DExtendedRaw2.java40 int binarySearch(List<T> list, T key) { argument
44 int binarySearch(List<T> list, T key, Comparator<T> c) { argument
/openjdk7/jdk/test/sun/security/mscapi/
H A DKeytoolChangeAlias.sh72 -list \
85 count=`${TESTJAVA}/bin/keytool -list -storetype Windows-My | wc -l`
101 count=`${TESTJAVA}/bin/keytool -list -storetype Windows-My | wc -l`
111 -list \
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUnicodeSet.java127 * complete list of supported property patterns, see the User's Guide
294 private int len; // length used; list may be longer to minimize reallocs
295 private int[] list; // MUST be terminated with HIGH field in class:UnicodeSet
310 * representation from the inversion list.
334 list = new int[1 + START_EXTRA];
335 list[len++] = HIGH;
371 list = (int[]) other.list.clone();
569 // find smallest i such that c < list[i]
578 // assert(list[le
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSGrammarPool.java54 ArrayList list = new ArrayList();
58 list.add(entry.grammar);
62 int size = list.size();
66 SchemaGrammar[] gs = (SchemaGrammar[])list.toArray(new SchemaGrammar[size]);
/openjdk7/corba/make/common/
H A DClasses.gmk47 @if [ -s $(TEMPDIR)/.classes.list ]; then \
56 @if [ -s $(TEMPDIR)/.classes.list ]; then \

Completed in 105 milliseconds

1234567891011>>