Searched refs:list (Results 276 - 300 of 1275) sorted by relevance

<<11121314151617181920>>

/openjdk9/jdk/test/com/sun/management/HotSpotDiagnosticMXBean/
H A DGetDoubleVMOption.java46 List<HotSpotDiagnosticMXBean> list =
48 HotSpotDiagnosticMXBean mbean = list.get(0);
H A DSetAllVMOptions.java44 List<HotSpotDiagnosticMXBean> list =
46 HotSpotDiagnosticMXBean mbean = list.get(0);
/openjdk9/jdk/test/java/awt/Focus/FocusTraversalPolicy/
H A DInitialFTP_Swing.java58 JList list = new JList(new String[] {"one", "two", "three"}); field in class:SwingFrame
66 this.add(list);
/openjdk9/jdk/test/java/awt/Frame/DisposeParentGC/
H A DDisposeParentGC.java111 List list = new List();
112 list.add("One");
113 list.add("Two");
114 list.add("Three");
115 list.add("Four");
116 list.add("Five");
132 list.setCursor(new Cursor(Cursor.HAND_CURSOR));
153 child.add(list);
/openjdk9/jdk/test/java/net/DatagramSocket/
H A DLocalSocketAddress.java42 List<NetworkInterface> nics = Collections.list(NetworkInterface.getNetworkInterfaces());
47 List<InetAddress> addrs = Collections.list(nic.getInetAddresses());
/openjdk9/jdk/test/java/net/NetworkInterface/
H A DSubNetworkInterfaceTest.java41 for (NetworkInterface netIf : Collections.list(nets)) {
47 for (NetworkInterface subIf : Collections.list(netIf.getSubInterfaces())) {
/openjdk9/jdk/test/java/util/Arrays/
H A DFloatDoubleOrder.java47 List list = new ArrayList();
49 list.add(new Double(unsortedDbl[i]));
50 Collections.sort(list);
56 check(list.equals(sortedList));
74 list.clear();
76 list.add(new Float(unsortedFlt[i]));
77 Collections.sort(list);
83 check(list.equals(sortedList));
/openjdk9/jdk/test/sun/security/tools/keytool/
H A DNoExtNPE.sh71 -list -v \
H A DUnknownAndUnparseable.java53 // Get the list output to a string
54 String list = s + "-list -v";
58 sun.security.tools.keytool.Main.main(list.split(" "));
H A Dnewhelp.sh48 $TESTJAVA${FS}bin${FS}keytool ${TESTTOOLVMOPTS} -help -list 2> h2 || exit 2
/openjdk9/jdk/test/javax/swing/JComboBox/7082443/
H A Dbug7082443.java64 public Component getListCellRendererComponent(JList list, Object value, int index,
66 return TestComboBox.super.getRenderer().getListCellRendererComponent(list, value, index,
/openjdk9/jdk/test/sun/util/calendar/zi/
H A DRule.java39 private List<RuleRec> list; field in class:Rule
43 * Constructs a Rule which consists of a Rule record list. The
49 list = new ArrayList<RuleRec>();
53 * Added a RuleRec to the Rule record list.
56 list.add(rec);
75 for (RuleRec rec : list) {
153 for (int i = 0; i < list.size(); i++) {
154 RuleRec rec = list.get(i);
165 for (int i = 0; i < list.size(); i++) {
166 RuleRec rec = list
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/formats/html/
H A DAbstractTreeWriter.java79 * @param parent the superclass or superinterface of the list
80 * @param list list of the sub-classes at this level
84 protected void addLevelInfo(ClassDoc parent, Collection<ClassDoc> list, argument
86 if (!list.isEmpty()) {
88 for (ClassDoc local : list) {
105 * @param list List of classes which are at the most base level, all the
110 protected void addTree(SortedSet<ClassDoc> list, String heading, HtmlTree div) { argument
111 if (!list.isEmpty()) {
112 ClassDoc firstClassDoc = list
[all...]
/openjdk9/jdk/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DReduceTest.java44 List<Integer> list = countTo(10);
46 assertEquals(55, (int) list.stream().reduce(rPlus).get());
47 assertEquals(55, (int) list.stream().reduce(0, rPlus));
48 assertEquals(10, (int) list.stream().reduce(rMax).get());
49 assertEquals(1, (int) list.stream().reduce(rMin).get());
54 assertEquals(110, (int) list.stream().map(mDoubler).reduce(rPlus).get());
55 assertEquals(20, (int) list.stream().map(mDoubler).reduce(rMax).get());
56 assertEquals(2, (int) list.stream().map(mDoubler).reduce(rMin).get());
/openjdk9/jdk/src/java.base/share/classes/java/lang/
H A DThreadGroup.java366 * {@linkplain #enumerate(Thread[], boolean) enumerate}{@code (list, true)}
369 * @param list
370 * an array into which to put the list of threads
380 public int enumerate(Thread list[]) { argument
382 return enumerate(list, 0, true);
398 * int value is strictly less than the length of {@code list}.
403 * @param list
404 * an array into which to put the list of threads
418 public int enumerate(Thread list[], boolean recurse) { argument
420 return enumerate(list,
423 enumerate(Thread list[], int n, boolean recurse) argument
514 enumerate(ThreadGroup list[]) argument
552 enumerate(ThreadGroup list[], boolean recurse) argument
557 enumerate(ThreadGroup list[], int n, boolean recurse) argument
983 public void list() { method in class:ThreadGroup
986 void list(PrintStream out, int indent) { method in class:ThreadGroup
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serialize/
H A DSerializerFactory.java58 String list;
74 list = SecuritySupport.getSystemProperty( FactoriesProperty );
75 if ( list != null ) {
76 token = new StringTokenizer( list, " ;,:" );
/openjdk9/jaxp/test/javax/xml/jaxp/unittest/validation/
H A DJaxpIssue43Test.java67 List<Source> list = new ArrayList<Source>();
80 list.add(new DOMSource(elem, file + "#schema0"));
84 return list.toArray(new Source[list.size()]);
/openjdk9/jdk/test/java/io/pathNames/win32/
H A DDriveSlash.java27 can be listed by the File.list method
43 String[] fs = f.list();
45 throw new Exception("File.list returned null");
/openjdk9/jdk/test/java/awt/List/KeyEventsTest/
H A DKeyEventsTest.java27 @summary Tests that triggering events on AWT list by pressing CTRL + HOME, CTRL + END, PG-UP, PG-DOWN similar Motif behavior
28 @author Dmitry.Cherepanov@SUN.COM area=awt.list
159 List list;
161 list = multiple;
163 list = single;
182 list.requestFocusInWindow();
184 if (KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusOwner() != list){
185 throw new RuntimeException("Test failed - list isn't focus owner.");
188 list.deselect(0);
189 list
[all...]
/openjdk9/jdk/test/java/util/Collections/
H A DEnum.java40 List l = Collections.list(v.elements());
/openjdk9/jdk/test/sun/security/smartcardio/
H A DTestDefault.java45 List<CardTerminal> terminals = factory.terminals().list();
/openjdk9/nashorn/samples/
H A Dclasses.js11 * notice, this list of conditions and the following disclaimer.
14 * notice, this list of conditions and the following disclaimer in the
42 var itr = fm.list(loc, pkg, kinds, true).iterator();
H A Dbarchart_weather.js11 * notice, this list of conditions and the following disclaimer.
14 * notice, this list of conditions and the following disclaimer in the
73 var temp = weather.list.map(function(x) x.main.temp);
74 var temp_min = weather.list.map(function(x) x.main.temp_min);
75 var temp_max = weather.list.map(function(x) x.main.temp_max);
76 var date = weather.list.map(function(x) x.dt_txt);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/iterators/
H A DNodeIterable.java44 ArrayList<T> list = new ArrayList<>();
45 snapshotTo(list);
46 return list;
/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.common/src/jdk/vm/ci/common/
H A DJVMCIError.java105 // expand Iterable parameters into a list representation
108 ArrayList<Object> list = new ArrayList<>();
110 list.add(o);
112 args[i] = list.toString();

Completed in 309 milliseconds

<<11121314151617181920>>