Searched refs:add (Results 201 - 225 of 3388) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javac/generics/
H A DBridgeRestype.java39 for (int i=0; i<args.length; i++) t.add(args[i]);
/openjdk7/jdk/test/java/awt/FileDialog/FileDialogReturnTest/
H A DFileDialogReturnTest.java80 add(new Label("File:"));
81 add(fileField);
82 add(new Label("Dir:"));
83 add(dirField);
84 add(button);
187 add( "North", instructionsText );
190 add("Center", messageText);
/openjdk7/jdk/test/java/awt/event/KeyEvent/CorrectTime/
H A DCorrectTime.java55 list.add("item1");
56 list.add("item2");
57 list.add("item3");
59 add(bt);
60 add(tf);
61 add(ta);
62 add(list);
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest6187118.java51 return new ImmutableList<String>().add("1").add("2").add("3").add("4");
69 return getExpression(oldInstance, shortenedList, "add", object);
87 this.list.add(object);
95 public ImmutableList<T> add(T object) { method in class:Test6187118.ImmutableList
97 list.list.add(object);
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DEqualExpression.java85 asm.add(where, whenTrue ? opc_if_icmpeq : opc_if_icmpne, lbl, whenTrue);
91 asm.add(where, opc_lcmp);
95 asm.add(where, opc_fcmpl);
99 asm.add(where, opc_dcmpl);
105 asm.add(where, whenTrue ? opc_ifnull : opc_ifnonnull, lbl, whenTrue);
108 asm.add(where, whenTrue ? opc_if_acmpeq : opc_if_acmpne, lbl, whenTrue);
115 asm.add(where, whenTrue ? opc_ifeq : opc_ifne, lbl, whenTrue);
H A DNotEqualExpression.java85 asm.add(where, whenTrue ? opc_if_icmpne : opc_if_icmpeq, lbl, whenTrue);
91 asm.add(where, opc_lcmp);
95 asm.add(where, opc_fcmpl);
99 asm.add(where, opc_dcmpl);
105 asm.add(where, whenTrue ? opc_ifnonnull : opc_ifnull, lbl, whenTrue);
108 asm.add(where, whenTrue ? opc_if_acmpne : opc_if_acmpeq, lbl, whenTrue);
114 asm.add(where, whenTrue ? opc_ifne : opc_ifeq, lbl, whenTrue);
H A DAssignAddExpression.java69 asm.add(where, opc_new, c);
70 asm.add(where, opc_dup);
86 asm.add(where, opc_invokespecial, f);
92 asm.add(where, opc_invokevirtual, f);
110 asm.add(where, opc_new, c);
112 asm.add(where, opc_dup_x1);
114 asm.add(where, opc_swap);
121 asm.add(where, opc_invokespecial, f);
127 asm.add(where, opc_invokevirtual, f);
147 asm.add(wher
[all...]
H A DGreaterExpression.java81 asm.add(where, whenTrue ? opc_if_icmpgt : opc_if_icmple, lbl, whenTrue);
87 asm.add(where, opc_lcmp);
91 asm.add(where, opc_fcmpl);
95 asm.add(where, opc_dcmpl);
100 asm.add(where, whenTrue ? opc_ifgt : opc_ifle, lbl, whenTrue);
H A DGreaterOrEqualExpression.java81 asm.add(where, whenTrue ? opc_if_icmpge : opc_if_icmplt, lbl, whenTrue);
87 asm.add(where, opc_lcmp);
91 asm.add(where, opc_fcmpl);
95 asm.add(where, opc_dcmpl);
100 asm.add(where, whenTrue ? opc_ifge : opc_iflt, lbl, whenTrue);
H A DLessExpression.java81 asm.add(where, whenTrue ? opc_if_icmplt : opc_if_icmpge, lbl, whenTrue);
87 asm.add(where, opc_lcmp);
91 asm.add(where, opc_fcmpg);
95 asm.add(where, opc_dcmpg);
100 asm.add(where, whenTrue ? opc_iflt : opc_ifge, lbl, whenTrue);
H A DLessOrEqualExpression.java81 asm.add(where, whenTrue ? opc_if_icmple : opc_if_icmpgt, lbl, whenTrue);
87 asm.add(where, opc_lcmp);
91 asm.add(where, opc_fcmpg);
95 asm.add(where, opc_dcmpg);
100 asm.add(where, whenTrue ? opc_ifle : opc_ifgt, lbl, whenTrue);
/openjdk7/jdk/test/java/util/Collections/
H A DRacingCollections.java79 case 0: l.add(two); break;
80 case 1: l.add(0, two); break;
90 case 0: q.add(two); break;
109 case 0: q.add(two); break;
125 c.add(two);
170 c.add(one);
187 list.add(new ConcurrentHashMap<Integer, Boolean>());
188 list.add(new ConcurrentSkipListMap<Integer, Boolean>());
194 list.add(new Hashtable<Integer, Boolean>());
195 list.add(ne
[all...]
/openjdk7/jdk/test/javax/swing/JMenu/4692443/
H A Dbug4692443.java90 menu.add(new JMenuItem("Menu Item 1")).setMnemonic('I');
95 JMenuItem item = submenu.add(new JMenuItem("One", 'O'));
97 submenu.add(new JMenuItem("Two", 'w'));
98 submenu.add(new JMenuItem("Three", 'r'));
107 menu.add(submenu);
108 JMenuItem menuItem = menu.add(new JMenuItem("Menu Item 2"));
111 mbar.add(menu);
/openjdk7/jdk/test/javax/swing/JSlider/6587742/
H A Dbug6587742.java83 pnVertical.add(createSlider(false, filled > 1 ? null : Boolean.valueOf(filled == 1), (i & 2) == 0,
94 pnHorizontal.add(createSlider(true, filled > 1 ? null : Boolean.valueOf(filled == 1), (i & 2) == 0,
100 tpSliders.add("Vertical sliders", pnVertical);
101 tpSliders.add("Horizontal sliders", pnHorizontal);
105 add(new JLabel("Select theme:"));
106 add(cbThemes);
107 add(tpSliders);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DHost.java121 InetAddress add = null;
123 add = java.net.InetAddress.getByName(getHname());
134 if (dest.containsKey(add)){
135 list = dest.get(add);
142 dest.put(add,list);
154 InetAddress add = null;
156 add = java.net.InetAddress.getByName(getHname());
167 if (dest.containsKey(add)){
168 list = dest.get(add);
175 dest.put(add,lis
[all...]
/openjdk7/langtools/test/tools/javac/6400872/
H A DT6400872.java68 options.add("-d");
69 options.add(classOutDir.getPath());
72 options.add("-classpath");
73 options.add(join(classPath, File.pathSeparator));
75 options.add("-verbose");
97 add(j, base, files);
101 static void add(JarOutputStream j, File base, File... files) throws IOException { method in class:T6400872
106 add(j, base, f);
109 static void add(JarOutputStream j, File base, File file) throws IOException { method in class:T6400872
115 add(
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DCreateMBeanDialog.java71 cp.add(centerPanel, BorderLayout.CENTER);
75 centerPanel.add(new LabeledComponent(Resources.format(Messages.MANAGE_HOTSPOT_MBEANS_IN_COLON_),
79 cp.add(bottomPanel, BorderLayout.SOUTH);
82 bottomPanel.add(buttonPanel, BorderLayout.NORTH);
83 buttonPanel.add(createMBeanButton =
85 buttonPanel.add(unregisterMBeanButton =
87 buttonPanel.add(cancelButton =
91 bottomPanel.add(statusBar, BorderLayout.SOUTH);
120 data.add(client);
127 data.add(clien
[all...]
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftAudioSynthesizer/
H A DDummySourceDataLine.java67 formats.add(new AudioFormat(Encoding.PCM_SIGNED,
70 formats.add(new AudioFormat(Encoding.PCM_UNSIGNED,
74 formats.add(new AudioFormat(Encoding.PCM_SIGNED,
77 formats.add(new AudioFormat(Encoding.PCM_UNSIGNED,
80 formats.add(new AudioFormat(Encoding.PCM_SIGNED,
83 formats.add(new AudioFormat(Encoding.PCM_UNSIGNED,
87 formats.add(new AudioFormat(Encoding.PCM_FLOAT,
90 formats.add(new AudioFormat(Encoding.PCM_FLOAT,
93 formats.add(new AudioFormat(Encoding.PCM_FLOAT,
96 formats.add(ne
[all...]
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSynthesizer/
H A DDummySourceDataLine.java67 formats.add(new AudioFormat(Encoding.PCM_SIGNED,
70 formats.add(new AudioFormat(Encoding.PCM_UNSIGNED,
74 formats.add(new AudioFormat(Encoding.PCM_SIGNED,
77 formats.add(new AudioFormat(Encoding.PCM_UNSIGNED,
80 formats.add(new AudioFormat(Encoding.PCM_SIGNED,
83 formats.add(new AudioFormat(Encoding.PCM_UNSIGNED,
87 formats.add(new AudioFormat(Encoding.PCM_FLOAT,
90 formats.add(new AudioFormat(Encoding.PCM_FLOAT,
93 formats.add(new AudioFormat(Encoding.PCM_FLOAT,
96 formats.add(ne
[all...]
/openjdk7/jdk/test/javax/swing/JFileChooser/6798062/
H A Dbug6798062.java63 frame.add(new bug6798062().initialize());
69 add(initialize());
129 pnButtons.add(btnStart);
130 pnButtons.add(btnStop);
131 pnButtons.add(btnGC);
138 pnContent.add(new JLabel("Delay between listFiles() invocation (ms):"));
139 pnContent.add(slider);
140 pnContent.add(new JLabel("Provide link here:"));
141 pnContent.add(tfLink);
142 pnContent.add(pnButton
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DCodeViewerPanel.java69 topPanel.add(new JLabel("Enter PC or methodOop/klassOop Address: "), BorderLayout.WEST);
71 topPanel.add(address, BorderLayout.CENTER);
78 bottomPanel.add(scrollPane);
80 add(topPanel, BorderLayout.NORTH);
81 add(bottomPanel, BorderLayout.CENTER);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/
H A DGraphCountGroupOrganizer.java58 map.get(cur).add(g);
63 result.add(new Pair<String, List<Group>>("Graph count " + i, map.get(i)));
69 children.add(g);
73 result.add(p);
76 result.add(new Pair<String, List<Group>>("", groups));
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsSecurityDescriptor.java132 sidList.add(pSid);
219 flags.add(AclEntryFlag.FILE_INHERIT);
221 flags.add(AclEntryFlag.DIRECTORY_INHERIT);
223 flags.add(AclEntryFlag.NO_PROPAGATE_INHERIT);
225 flags.add(AclEntryFlag.INHERIT_ONLY);
231 perms.add(AclEntryPermission.READ_DATA);
233 perms.add(AclEntryPermission.WRITE_DATA);
235 perms.add(AclEntryPermission.APPEND_DATA);
237 perms.add(AclEntryPermission.READ_NAMED_ATTRS);
239 perms.add(AclEntryPermissio
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DVarargsTest.java264 nullArg1.add(null);
270 nullArg2.add(vm().mirrorOf(9));
276 nullArg2.add(vm().mirrorOf(9));
277 nullArg2.add(null);
282 args1.add(vm().mirrorOf("1"));
288 args1.add(vm().mirrorOf("2"));
289 args1.add(vm().mirrorOf("3"));
290 args1.add(vm().mirrorOf("4"));
295 args2.add(vm().mirrorOf(9));
296 args2.add(v
[all...]
/openjdk7/langtools/test/tools/apt/lib/
H A DTester.java90 as.add("-sourcepath"); as.add(testSrc);
91 as.add("-factory"); as.add(TestProcessorFactory.class.getName());
93 as.add(sourceFile);

Completed in 131 milliseconds

1234567891011>>