Searched defs:label (Results 51 - 75 of 152) sorted by relevance

1234567

/openjdk7/jdk/src/macosx/classes/com/apple/concurrent/
H A DDispatch.java96 * @param label - a label to name the queue, shown in several debugging tools
99 public ExecutorService createSerialExecutor(String label) { argument
100 if (label == null) label = "";
101 if (label.length() > 256) label = label.substring(0, 256);
103 if ("".equals(label)) {
108 queueName += label;
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCMenu.java91 public void setLabel(String label) { argument
92 nativeSetMenuTitle(getModel(), label);
93 super.setLabel(label);
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLOptionElement.java84 * Option label for use in hierarchical menus. See the label attribute
88 public void setLabel(String label); argument
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DMangleTest.java46 void checkLocation(Location loc, String label, argument
52 println(label + " sourceName: " + sourceName);
54 failure("FAIL: " + label +
61 println(label + " sourcePath: " + sourcePath);
63 failure("FAIL: " + label +
70 println(label + " line number: " + ln);
72 failure("FAIL: " + label +
78 void checkLocation(String stratum, Location loc, String label, argument
84 println(label + "(" + stratum + ")" +
87 failure("FAIL: " + label
[all...]
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnD/
H A DDnDSource.java43 DnDSource(String label) { argument
44 super(label);
218 Label label = new Label("[empty]");
219 label.setBackground(Color.cyan);
220 label.setBounds(this.getBounds());
221 parent.add(label);
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnDInOut/
H A DDnDSource.java43 DnDSource(String label) { argument
44 super(label);
218 Label label = new Label("[empty]");
219 label.setBackground(Color.cyan);
220 label.setBounds(this.getBounds());
221 parent.add(label);
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnDNegative/
H A DDnDSource.java47 DnDSource(String label) { argument
48 super(label);
256 Label label = new Label("[empty]");
257 label.setBackground(Color.cyan);
258 label.setBounds(this.getBounds());
259 parent.add(label);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DPackageSummaryWriter.java78 * @param label the label for this table.
83 public abstract void addClassesSummary(ClassDoc[] classes, String label, argument
/openjdk7/langtools/test/com/sun/javadoc/DocRootSlash/
H A DDocRootSlash.java198 * group4 (.*?) (label - zero or more characters)
204 static String label = "(.*?)"; // text label (group4) field in class:DocRootSlash
217 // Pattern linkPattern2 = Pattern.compile(prefix + ref2 + label + end, Pattern.DOTALL);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXNodeInfo.java31 * <p>It encapsulates the node's info, i.e. the type of the node, the label to
46 public XNodeInfo(Type type, Object data, String label, String tooltip) { argument
49 this.label = label;
62 return label;
70 return label;
75 private String label; field in class:XNodeInfo
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXLabelPeer.java33 * Create the label
38 String label; field in class:XLabelPeer
55 label = target.getText();
56 if (label == null) {
57 label = "";
73 w = fm.stringWidth(label);
84 * Paint the label
114 textX = width - (fm.stringWidth(label) + 2);
118 textX = (width - fm.stringWidth(label)) / 2;
124 g.drawString(label, text
[all...]
/openjdk7/langtools/test/tools/javac/api/
H A DT6877206.java152 void checkCoverage(String label, Set<String> found, String... expect) throws Exception { argument
156 throw new Exception("expected " + label + " not used: " + e);
/openjdk7/langtools/test/tools/javac/processing/model/
H A DTestSymtabItems.java94 void print(String label, Element e) { argument
96 System.err.println("Test " + label);
101 void print(String label, TypeMirror t, Types types) { argument
103 System.err.println("Test " + label);
185 void show(String label, Element e) { argument
186 System.err.println(sp(indent) + label
/openjdk7/langtools/test/tools/javac/processing/model/element/TestMissingElement/
H A DTestMissingElement.java84 private void checkEqual(String label, TypeElement te, String found, String expect) { argument
86 // messager.printMessage(NOTE, "expected " + label + " found: " + expect, te);
88 System.err.println("unexpected " + label + ": " + te + "\n"
91 messager.printMessage(ERROR, "unexpected " + label + " found: " + found + "; expected: " + expect, te);
/openjdk7/langtools/test/tools/javac/scope/
H A DHashCollisionTest.java182 void dump(String label, Scope s) throws Exception { argument
183 dump(label, s, System.err);
189 void dump(String label, Scope s, PrintStream out) throws Exception { argument
190 out.println(label);
/openjdk7/langtools/test/tools/javac/tree/
H A DT6993305.java88 void show(String label, int pos) { argument
89 System.err.println(label + ": " +
/openjdk7/langtools/test/tools/javac/util/context/
H A DT7021650.java113 void checkEqual(String label, int found, int expect) throws Exception { argument
115 throw new Exception("unexpected value for " + label
210 void check(String label, Object o, Class<?> clazz) { argument
212 throw new IllegalStateException(label + ": no item found");
214 throw new IllegalStateException(label + ": unexpected class: " + o.getClass());
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/fsm/
H A DFSMTest.java62 System.out.println( "\tlabel = " + label ) ;
65 if (label != in)
71 public TestAction1( State oldState, Input label, State newState ) argument
75 this.label = label ;
79 private Input label ; field in class:TestAction1
107 private Input label ; field in class:TestAction3
112 System.out.println( "\tlabel = " + label ) ;
114 if (label != in)
118 public TestAction3( State oldState, Input label )
[all...]
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DStatusBar.java43 label = new JLabel(" ");
44 preferredSize = new Dimension(getWidth(label.getText()), 2 * getFontHeight());
46 add(label);
86 label.setText(message);
87 label.repaint();
171 private JLabel label; field in class:StatusBar
/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSetMetaData.java151 * @param label the column title
154 void setColumnLabel(int columnIndex, String label) throws SQLException; argument
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputMethodPopupMenu.java74 abstract Object createSubmenu(String label); argument
78 abstract void addMenuItem(String label, String command, String currentSelection); argument
80 abstract void addMenuItem(Object targetMenu, String label, String command, argument
85 String label = descriptor.getInputMethodDisplayName(null, Locale.getDefault());
100 addMenuItem(label, null, currentSelection);
106 label = descriptor.getInputMethodDisplayName(locales[0], Locale.getDefault());
109 addMenuItem(label, command, currentSelection);
111 Object submenu = createSubmenu(label);
193 Object createSubmenu(String label) { argument
194 return new JMenu(label);
201 addMenuItem(String label, String command, String currentSelection) argument
205 addMenuItem(Object targetMenu, String label, String command, String currentSelection) argument
251 createSubmenu(String label) argument
259 addMenuItem(String label, String command, String currentSelection) argument
263 addMenuItem(Object targetMenu, String label, String command, String currentSelection) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DClassTreeTool.java174 ClassTreeNode createClassTree(String label) { argument
175 return new ClassTreeNode(label, null);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DScreenMenuItem.java67 final String label = fMenuItem.getText();
68 if (label != null) {
69 setLabel(label);
99 static void syncLabelAndKS(MenuItem menuItem, String label, KeyStroke ks) { argument
107 cmi.setLabel(label);
109 cmi.setLabel(label, ks.getKeyChar(), ks.getKeyCode(),
115 public synchronized void setLabel(final String label) { argument
116 syncLabelAndKS(this, label, fMenuItem.getAccelerator());
H A DScreenMenuItemCheckbox.java114 public synchronized void setLabel(final String label) { argument
115 ScreenMenuItem.syncLabelAndKS(this, label, fMenuItem.getAccelerator());
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWCheckboxPeer.java121 public void setLabel(final String label) { argument
123 getDelegate().setText(label);
204 void setText(final String label) { argument
205 cb.setText(label);
206 rb.setText(label);

Completed in 274 milliseconds

1234567