Searched defs:label (Results 101 - 125 of 152) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/java/awt/
H A DMenu.java116 * Constructs a new menu with an empty label. This menu is not
128 * Constructs a new menu with the specified label. This menu is not
130 * @param label the menu's label in the menu bar, or in
136 public Menu(String label) throws HeadlessException { argument
137 this(label, false);
141 * Constructs a new menu with the specified label,
147 * @param label the menu's label in the menu bar, or in
156 public Menu(String label, boolea argument
291 add(String label) argument
353 insert(String label, int index) argument
[all...]
H A DMenuItem.java50 * a menu item, created with the label <code>"-"</code>.
87 return item.label;
117 * <code>label</code> is the label of a menu item.
124 String label; field in class:MenuItem
130 * is the label of the menu item, unless it has been
174 * Constructs a new MenuItem with an empty label and no keyboard
186 * Constructs a new MenuItem with the specified label
188 * a label is reserved to indicate a separator between
191 * @param label th
197 MenuItem(String label) argument
214 MenuItem(String label, MenuShortcut s) argument
257 setLabel(String label) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ServerCompiler/src/com/sun/hotspot/igv/servercompiler/
H A DServerCompilerScheduler.java338 int label; field in class:ServerCompilerScheduler.BlockIntermediate
391 bi.label = z;
504 int label = block.label;
505 BlockIntermediate label_block = blocks.get(label);
507 int ancestor_label = ancestor_block.label;
508 BlockIntermediate ancestor_label_block = blocks.get(label);
510 block.label = ancestor_label;
523 return block.label;
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DNode.java139 String debugValue(String label) { argument
140 return label;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTextFieldSearch.java216 final JLabel label = new JLabel();
217 label.setForeground(UIManager.getColor("TextField.inactiveForeground"));
220 public void changedUpdate(final DocumentEvent e) { updatePromptLabel(label, c); }
221 public void insertUpdate(final DocumentEvent e) { updatePromptLabel(label, c); }
222 public void removeUpdate(final DocumentEvent e) { updatePromptLabel(label, c); }
225 public void focusGained(final FocusEvent e) { updatePromptLabel(label, c); }
226 public void focusLost(final FocusEvent e) { updatePromptLabel(label, c); }
228 updatePromptLabel(label, c);
230 return label;
233 static void updatePromptLabel(final JLabel label, fina argument
243 updatePromptLabelOnEDT(final JLabel label, final JTextComponent text) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DTlsPrfGenerator.java207 // P_HASH(Secret, label + seed)
246 // P_MD5(S1, label + seed)
250 // P_SHA-1(S2, label + seed)
263 * @param label the label
268 byte[] secret, int secOff, int secLen, byte[] label, byte[] seed,
302 digest.update(label);
323 digest.update(label);
267 expand(MessageDigest digest, int hmacSize, byte[] secret, int secOff, int secLen, byte[] label, byte[] seed, byte[] output, byte[] pad1, byte[] pad2) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJBlock.java360 public void _break(JLabel label) { argument
361 insert(new JBreak(label));
365 * Create a label, which can be referenced from
368 public JLabel label(String name) { method in class:JBlock
377 public void _continue(JLabel label) { argument
378 insert(new JContinue(label));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodVisitor.java175 * types by Label objects (this label designates the NEW instruction
288 * @param label the operand of the instruction to be visited. This operand
289 * is a label that designates the instruction to which the jump
292 void visitJumpInsn(int opcode, Label label); argument
295 * Visits a label. A label designates the instruction that will be visited
298 * @param label a {@link Label Label} object.
300 void visitLabel(Label label); argument
/openjdk7/jdk/src/windows/native/sun/awt_common/
H A Dawt_makecube.cpp50 void printPalette(char *label, HPALETTE hPal);
415 void printPalette(char *label, HPALETTE hPal) argument
418 fprintf(stderr, "%s (0x%08x):\n", label, hPal);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Button.cpp41 jstring label; member in struct:SetLabelStruct
74 jstring label = NULL; local
98 label = (jstring)env->GetObjectField(target, AwtButton::labelID);
105 if (label == NULL) {
108 labelStr = JNU_GetStringPlatformChars(env, label, JNI_FALSE);
129 if (label != NULL)
130 JNU_ReleaseStringPlatformChars(env, label, labelStr);
133 if (label != NULL)
134 env->DeleteLocalRef(label);
140 if (label !
296 jstring label = sls->label; local
372 Java_sun_awt_windows_WButtonPeer_setLabel(JNIEnv *env, jobject self, jstring label) argument
[all...]
H A Dawt_Label.cpp37 jobject label; member in struct:SetTextStruct
42 jobject label; member in struct:SetAlignmentStruct
142 /* Redraw whole label to eliminate display noise during resizing. */
241 jobject self = sts->label;
266 jobject self = sas->label;
277 * alignment argument of multifont label is referred to in
351 sts->label = env->NewGlobalRef(self);
372 sas->label = env->NewGlobalRef(self);
H A Dawt_Checkbox.cpp39 jstring label; member in struct:SetLabelStruct
75 jstring label = NULL; local
107 label = (jstring)env->GetObjectField(target, AwtCheckbox::labelID);
108 if (label != NULL) {
109 labelStr = JNU_GetStringPlatformChars(env, label, 0);
126 JNU_ReleaseStringPlatformChars(env, label, labelStr);
133 env->DeleteLocalRef(label);
139 env->DeleteLocalRef(label);
356 jstring label = sls->label; local
533 jstring label = (jstring)env->GetObjectField(target, AwtCheckbox::labelID); local
642 Java_sun_awt_windows_WCheckboxPeer_setLabel(JNIEnv *env, jobject self, jstring label) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DAnnotationTypeWriterImpl.java335 * @param label the label for the navigation
340 String label, int type, Content liNav) {
344 liNav.addContent(getResource(label));
339 addNavSummaryLink(MemberSummaryBuilder builder, String label, int type, Content liNav) argument
H A DLinkInfoImpl.java220 * @param label the label for the link.
223 public LinkInfoImpl (int context, ClassDoc classDoc, String label, argument
226 this.label = label;
237 * @param label the label for the link.
241 public LinkInfoImpl (int context, ClassDoc classDoc, String where, String label, argument
245 this.label = label;
260 LinkInfoImpl(int context, ClassDoc classDoc, String where, String label, boolean isStrong) argument
275 LinkInfoImpl(ClassDoc classDoc, String label) argument
340 LinkInfoImpl(int context, Type type, String label, boolean isStrong) argument
356 LinkInfoImpl(int context, ClassDoc classDoc, String label, boolean isStrong) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DBorderedComponent.java45 JLabel label; field in class:BorderedComponent
135 if (label != null) {
136 label.setText(Resources.format(Messages.CURRENT_VALUE,
143 if (label != null) {
144 remove(label);
151 if (label == null) {
152 label = new JLabel(Resources.format(Messages.CURRENT_VALUE,
155 add(label);
198 if (label != null) {
199 Dimension p = label
278 protected JComponent label; field in class:BorderedComponent.LabeledBorder
287 LabeledBorder(JComponent label) argument
308 LabeledBorder(Border border, JComponent label) argument
483 setLabel(JComponent label) argument
[all...]
H A DFormatter.java246 static String newRow(String label, String value) { argument
247 return newRow(label, value, 2);
250 static String newRow(String label, String value, int columnPerRow) { argument
251 if (label == null) {
252 label = "";
254 label += ":&nbsp;";
256 label = "<th nowrap align=right valign=top>" + label;
259 return "<tr>" + label + value + "</tr>";
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXSheet.java578 * Update notification node label in MBean tree: "Notifications[received]".
592 * Update notification node label in MBean tree: "Notifications".
601 * Update notification node label in MBean tree: "Notifications[0]".
610 * Update the label of the supplied MBean tree node.
614 DefaultMutableTreeNode node, String label) {
620 label, oldUserObject.getToolTipText());
640 // registered so add "[0]" at the end of the node label.
647 // registered so don't add "[0]" at the end of the node label.
613 updateNotificationsNodeLabel( DefaultMutableTreeNode node, String label) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXButtonPeer.java51 String label; field in class:XButtonPeer
69 label = target.getLabel();
85 public void setLabel(java.lang.String label) { argument
86 this.label = label;
199 if ( label == null ) {
200 label = "";
202 return new Dimension(fm.stringWidth(label) + 14,
245 String llabel = (label != null) ? label
[all...]
H A DXCheckboxPeer.java68 String label; field in class:XCheckboxPeer
76 label = target.getLabel();
77 if ( label == null ) {
78 label = "";
138 public void setLabel(java.lang.String label) { argument
139 if ( label == null ) {
140 this.label = "";
142 this.label = label;
243 * Spacing (number of pixels between check mark and label tex
[all...]
H A DXMenuItemPeer.java159 public void setLabel(String label) { argument
205 String label = AWTAccessor.getMenuItemAccessor().getLabel(target);
206 return (label == null) ? "" : label;
355 * Returns dimensions of item's label.
370 * Returns width of item's shortcut label,
/openjdk7/langtools/test/tools/javac/processing/
H A DT6920317.java446 private void checkEqual(String label, String actual, String expect) { argument
448 error("Unexpected value for " + label + "; actual=" + actual + ", expected=" + expect);
/openjdk7/jdk/test/sun/nio/cs/
H A DTestISO2022CNDecoder.java50 String label)
69 System.err.print(label + ": read failed, char " + i);
85 System.err.println(label + ": read failed, no EOF");
94 System.err.println(label + ": read failed, char " + i);
106 System.err.println(label + ": directBuffer failed, ");
110 System.err.println(label + ": decoder's decode() failed!");
116 System.err.println(label + ": decoder failed, char " + i);
120 System.err.println(label + ": failed "
141 String label) {
147 System.err.println(label
47 decodeTest( byte encoded[], char decoded[], String label) argument
139 decodeResultTest(byte encoded[], CoderResult expected, String label) argument
171 negative(byte encoded [], String label) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetMetaDataImpl.java293 * Sets the suggested column label for use in printouts and
294 * displays, if any, to <i>label</i>. If <i>label</i> is
295 * <code>null</code>, the column label is set to an empty string
300 * @param label the column label to be used in printouts and displays; if the
301 * column label is <code>null</code>, an empty <code>String</code> is
306 public void setColumnLabel(int columnIndex, String label) throws SQLException { argument
308 if (label != null) {
309 colInfo[columnIndex].columnLabel = label;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DSourceTool.java381 private JMenuItem commandItem(String label, final String cmd) { argument
382 JMenuItem item = new JMenuItem(label);
/openjdk7/langtools/test/tools/javac/tree/
H A DTreePosTest.java414 void check(String label, Info encl, Info self, boolean ok) { argument
419 viewer.addEntry(sourcefile, label, encl, self);
423 String msg = sourcefile.getName() + ": " + label + ": " +

Completed in 97 milliseconds

1234567